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 +