30 lines
714 B
TypeScript
30 lines
714 B
TypeScript
import React from "react";
|
|
|
|
import Navbar from "./components/Navbar/Navbar";
|
|
import "./App.css";
|
|
import AboutUs from "./container/AboutUs/AboutUs";
|
|
import Header from "./container/Header/Header";
|
|
import Chef from "./container/Chef/Chef";
|
|
import Gallery from "./container/Gallery/Gallery";
|
|
import Intro from "./container/Intro/Intro";
|
|
import Laurels from "./container/Laurels/Laurels";
|
|
import FindUs from "./container/FindUs/FindUs";
|
|
import Footer from "./components/Footer/FooterOverlay";
|
|
|
|
const App = () => (
|
|
<div>
|
|
<Navbar />
|
|
<Header />
|
|
<AboutUs />
|
|
{/* <SpecialMenu /> */}
|
|
<Chef />
|
|
<Intro />
|
|
<Laurels />
|
|
<Gallery />
|
|
<FindUs />
|
|
<Footer />
|
|
</div>
|
|
);
|
|
|
|
export default App;
|