sixty5-street/app/page.js
2025-11-10 23:11:25 +05:30

38 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
</>
)
}