TEST

TEST

import React from "react"; export default function App() { return (
Simple React Test Page

Build something
great today.

A simple landing page built with React. Use this as a basic test page for your project, hosting or deployment.

Fast

Simple React structure with minimal code.

Clean

Minimal interface without unnecessary components.

Responsive

Works as a basic starting point for any project.

© 2026 TestApp
); } const styles = { page: { minHeight: "100vh", background: "#ffffff", color: "#111111", fontFamily: "Inter, Arial, sans-serif", }, nav: { height: "72px", maxWidth: "1100px", margin: "0 auto", padding: "0 24px", display: "flex", alignItems: "center", justifyContent: "space-between", borderBottom: "1px solid #eeeeee", }, logo: { fontSize: "20px", fontWeight: "600", }, links: { display: "flex", gap: "28px", }, link: { color: "#555", textDecoration: "none", fontSize: "14px", }, navButton: { background: "#111", color: "#fff", border: "none", padding: "10px 18px", borderRadius: "8px", cursor: "pointer", }, hero: { maxWidth: "850px", margin: "0 auto", padding: "140px 24px 120px", textAlign: "center", }, badge: { display: "inline-block", border: "1px solid #ddd", borderRadius: "999px", padding: "7px 13px", fontSize: "13px", color: "#666", marginBottom: "28px", }, title: { fontSize: "72px", lineHeight: "1.05", letterSpacing: "-4px", margin: "0 0 28px", fontWeight: "600", }, muted: { color: "#999", }, description: { maxWidth: "580px", margin: "0 auto", fontSize: "18px", lineHeight: "1.6", color: "#666", }, actions: { marginTop: "36px", display: "flex", justifyContent: "center", gap: "12px", }, primaryButton: { background: "#111", color: "#fff", border: "none", padding: "13px 22px", borderRadius: "8px", fontSize: "15px", cursor: "pointer", }, secondaryButton: { background: "#fff", color: "#111", border: "1px solid #ddd", padding: "13px 22px", borderRadius: "8px", fontSize: "15px", cursor: "pointer", }, features: { maxWidth: "1000px", margin: "0 auto", padding: "60px 24px 120px", display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: "40px", borderTop: "1px solid #eee", }, feature: { lineHeight: "1.6", color: "#666", }, footer: { padding: "30px", borderTop: "1px solid #eee", textAlign: "center", fontSize: "13px", color: "#888", }, };