38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
|
||
import Layout from "@/components/layout/Layout"
|
||
import Banner from "@/components/sections/home1/Banner"
|
||
import Gallery from "@/components/sections/home2/Gallery"
|
||
import Menus from "@/components/sections/home2/Menus"
|
||
import Specials from "@/components/sections/home2/Specials"
|
||
import Juice from "@/components/sections/home1/Juice"
|
||
import Recipe from "@/components/sections/home3/Recipe"
|
||
import Fluid from "@/components/sections/home3/Fluid"
|
||
import Menu2 from "@/components/sections/home4/Menu2"
|
||
import Testimonial from "@/components/sections/home1/client-review"
|
||
import Blog from "@/components/sections/home2/blog"
|
||
|
||
export const metadata = {
|
||
title: "Sixty5 Street – Bold Street Food, Wings, Wraps & Dosas",
|
||
description: "Welcome to Sixty5 Street – where fiery wings, loaded fries, shawarmas and crispy dosas bring global street-food attitude to your plate. Dive in now.",
|
||
}
|
||
|
||
export default function Home() {
|
||
|
||
return (
|
||
<>
|
||
<Layout headerStyle={2} footerStyle={2}>
|
||
<Banner />
|
||
<Juice />
|
||
<Recipe />
|
||
<Fluid />
|
||
<Specials />
|
||
<Menus />
|
||
{/* <Video /> */}
|
||
<Menu2 />
|
||
<Gallery />
|
||
<Testimonial />
|
||
<Blog />
|
||
</Layout>
|
||
</>
|
||
)
|
||
} |