43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
|
|
import Layout from "@/components/layout/Layout"
|
|
import Banner from "@/components/sections/home1/Banner"
|
|
import Gallery from "@/components/sections/home2/Gallery"
|
|
import History from "@/components/sections/home2/History"
|
|
import Location from "@/components/sections/home2/Location"
|
|
import Menus from "@/components/sections/home2/Menus"
|
|
import Specials from "@/components/sections/home2/Specials"
|
|
import Contact from "@/components/sections/home2/Contact"
|
|
import Juice from "@/components/sections/home1/Juice"
|
|
import Beverage from "@/components/sections/home1/Beverage"
|
|
import Recipe from "@/components/sections/home3/Recipe"
|
|
import Fluid from "@/components/sections/home3/Fluid"
|
|
import Tips from "@/components/sections/home4/Tips"
|
|
import Video from "@/components/sections/home4/Video"
|
|
import Menu2 from "@/components/sections/home4/Menu2"
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
<>
|
|
<Layout headerStyle={2} footerStyle={2}>
|
|
<Banner />
|
|
<Juice />
|
|
<Recipe />
|
|
<Fluid />
|
|
<Specials />
|
|
<Menus />
|
|
<Video />
|
|
<Menu2 />
|
|
<Gallery />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Layout>
|
|
</>
|
|
)
|
|
} |