From ff984b913c3932b2405f813b1bb252f559a07f43 Mon Sep 17 00:00:00 2001 From: Elsa2116 Date: Sun, 16 Mar 2025 08:28:52 -0400 Subject: [PATCH] Update react-logo.svg --- react-logo.svg | 69 +++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 66 insertions(+), 3 deletions(-) diff --git a/react-logo.svg b/react-logo.svg index 284327b..6e51cbc 100644 --- a/react-logo.svg +++ b/react-logo.svg @@ -1,9 +1,72 @@ - +import ReactDOM from "react-dom/client"; +import "./index.css"; +import App from "./App"; react copy 5 Created with Sketch. - + import React from "react"; +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render( + + + +); + +// App.js +export default function App() { + return ( +
+ + + +
+
+ ); +} + +// Navbar.js +function Navbar() { + return ( + + ); +} + +// Hero.js +function Hero() { + return ( +
+

Welcome to React Landing Page

+
+ ); +} + +// Features.js +function Features() { + return ( +
+

Features

+
+ Feature 1 + Feature 2 + Feature 3 + Feature 4 +
+
+ ); +} + +// Footer.js +function Footer() { + return ( + + ); +} + @@ -16,4 +79,4 @@ - \ No newline at end of file +