23 lines
484 B
React
23 lines
484 B
React
import Navbar from "./components/Navbar";
|
|
import Hero from "./components/Hero";
|
|
import About from "./components/About";
|
|
import Menu from "./components/Menu";
|
|
import OrderForm from "./components/OrderForm";
|
|
import Location from "./components/Location";
|
|
import Footer from "./components/Footer";
|
|
|
|
function App() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<Hero />
|
|
<About />
|
|
<Menu />
|
|
<OrderForm />
|
|
<Location />
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default App; |