Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 542e5f869a |
253
src/app/page.tsx
253
src/app/page.tsx
@@ -5,14 +5,14 @@ import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FaqBase from '@/components/sections/faq/FaqBase';
|
||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Facebook, Instagram } from "lucide-react";
|
||||
import { Facebook, Instagram, MessageCircle } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -26,28 +26,16 @@ export default function LandingPage() {
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<div id="nav" data-section="nav" className="fixed top-0 left-0 w-full z-50">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Home", id: "#hero" },
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="Seven Square"
|
||||
/>
|
||||
@@ -55,20 +43,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Seven Square: Visit Our Kitchen"
|
||||
description="Discover 170+ delicious items in the heart of Bediapara, Kolkata. Authentic Bengali, Chinese, and Indian flavors waiting for you."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
text: "Call to Reserve",
|
||||
href: "tel:9735377233",
|
||||
},
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
{ text: "Call to Reserve", href: "tel:9735377233" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/indian-circular-food-frame-with-copy-space_23-2148723470.jpg"
|
||||
/>
|
||||
@@ -80,18 +60,9 @@ export default function LandingPage() {
|
||||
title="About Seven Square"
|
||||
description="An affordable AC restaurant in Kolkata specializing in Bengali, Chinese, and Indian cuisine. We offer a perfect casual-modern dine-in experience with kerbside pickup available daily until 10:30 PM."
|
||||
metrics={[
|
||||
{
|
||||
value: "170+",
|
||||
title: "Delicious Items",
|
||||
},
|
||||
{
|
||||
value: "₹1-200",
|
||||
title: "Budget-Friendly",
|
||||
},
|
||||
{
|
||||
value: "Daily",
|
||||
title: "Open Until 10:30 PM",
|
||||
},
|
||||
{ value: "170+", title: "Delicious Items" },
|
||||
{ value: "₹1-200", title: "Budget-Friendly" },
|
||||
{ value: "Daily", title: "Open Until 10:30 PM" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-dining-table-assortment_23-2150312227.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -106,48 +77,12 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Fish Finger (Vetki)",
|
||||
price: "₹50",
|
||||
variant: "Starter",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-fish-meal-with-mushrooms-vegetables-cheese-cutlery-set-wooden-board-left-side-black-distressed-surface_179666-34175.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Chicken Pakora (6 pcs)",
|
||||
price: "₹120",
|
||||
variant: "Starter",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-baked-chicken-with-cucumber-lemon-seasoning-bread-table_141793-4757.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Prawn Pakora (6 pcs)",
|
||||
price: "₹130",
|
||||
variant: "Starter",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sandwiches-with-smoked-salmon-cream-cheese-dill_114579-11272.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Paneer Pakora (6 pcs)",
|
||||
price: "₹150",
|
||||
variant: "Starter",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/nam-neaung-vietnamese-meat-ball-wraps_1339-2786.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Chicken 65 (4 pcs)",
|
||||
price: "₹100",
|
||||
variant: "Starter",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-nuggets-wings-breast-with-onion-salad_114579-913.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Cold Coffee",
|
||||
price: "₹100",
|
||||
variant: "Drink",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/served-healthy-straw-ice-background_1172-445.jpg",
|
||||
},
|
||||
{ id: "1", name: "Fish Finger (Vetki)", price: "₹50", variant: "Starter", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fried-fish-meal-with-mushrooms-vegetables-cheese-cutlery-set-wooden-board-left-side-black-distressed-surface_179666-34175.jpg" },
|
||||
{ id: "2", name: "Chicken Pakora (6 pcs)", price: "₹120", variant: "Starter", imageSrc: "http://img.b2bpic.net/free-photo/side-view-baked-chicken-with-cucumber-lemon-seasoning-bread-table_141793-4757.jpg" },
|
||||
{ id: "3", name: "Prawn Pakora (6 pcs)", price: "₹130", variant: "Starter", imageSrc: "http://img.b2bpic.net/free-photo/sandwiches-with-smoked-salmon-cream-cheese-dill_114579-11272.jpg" },
|
||||
{ id: "4", name: "Paneer Pakora (6 pcs)", price: "₹150", variant: "Starter", imageSrc: "http://img.b2bpic.net/free-photo/nam-neaung-vietnamese-meat-ball-wraps_1339-2786.jpg" },
|
||||
{ id: "5", name: "Chicken 65 (4 pcs)", price: "₹100", variant: "Starter", imageSrc: "http://img.b2bpic.net/free-photo/grilled-chicken-nuggets-wings-breast-with-onion-salad_114579-913.jpg" },
|
||||
{ id: "6", name: "Cold Coffee", price: "₹100", variant: "Drink", imageSrc: "http://img.b2bpic.net/free-photo/served-healthy-straw-ice-background_1172-445.jpg" },
|
||||
]}
|
||||
title="Explore Our Menu"
|
||||
description="Choose from over 170+ items. Below are some of our guest favorites."
|
||||
@@ -160,36 +95,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
label: "Services",
|
||||
title: "Flexible Ordering",
|
||||
items: [
|
||||
"Dine-in Available",
|
||||
"Kerbside Pickup",
|
||||
"Fast Service",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
label: "Quality",
|
||||
title: "Fresh Ingredients",
|
||||
items: [
|
||||
"Daily Fresh Produce",
|
||||
"Authentic Spices",
|
||||
"Prepared to Order",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
label: "Cuisine",
|
||||
title: "Diverse Menu",
|
||||
items: [
|
||||
"Bengali Classics",
|
||||
"Indian Favorites",
|
||||
"Chinese Specialties",
|
||||
],
|
||||
},
|
||||
{ id: "f1", label: "Services", title: "Flexible Ordering", items: ["Dine-in Available", "Kerbside Pickup", "Fast Service"] },
|
||||
{ id: "f2", label: "Quality", title: "Fresh Ingredients", items: ["Daily Fresh Produce", "Authentic Spices", "Prepared to Order"] },
|
||||
{ id: "f3", label: "Cuisine", title: "Diverse Menu", items: ["Bengali Classics", "Indian Favorites", "Chinese Specialties"] },
|
||||
]}
|
||||
title="Why Seven Square?"
|
||||
description="Experience quality service with authentic taste at affordable prices."
|
||||
@@ -202,41 +110,11 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Rahul Das",
|
||||
handle: "@rahul",
|
||||
testimonial: "Best budget-friendly restaurant in Bediapara. The chicken kosha is a must-try!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-close-up-young-beautiful-girl-street_1153-9650.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Priya Sen",
|
||||
handle: "@priya",
|
||||
testimonial: "Excellent service and very tasty food. Perfect for a quick family dinner.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5062.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Amit Gupta",
|
||||
handle: "@amit",
|
||||
testimonial: "Loved the fish fry, it's very authentic and reasonably priced.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-holding-enjoying-paper-wrapped-sandwiches_52683-160704.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Suman Roy",
|
||||
handle: "@suman",
|
||||
testimonial: "Great variety, especially the Chinese items. Will visit again.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Riya Basu",
|
||||
handle: "@riya",
|
||||
testimonial: "So clean and affordable. The staff is very helpful.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-eating-traditional-italian-pizza-together_52683-110887.jpg",
|
||||
},
|
||||
{ id: "1", name: "Rahul Das", handle: "@rahul", testimonial: "Best budget-friendly restaurant in Bediapara. The chicken kosha is a must-try!", imageSrc: "http://img.b2bpic.net/free-photo/portrait-close-up-young-beautiful-girl-street_1153-9650.jpg" },
|
||||
{ id: "2", name: "Priya Sen", handle: "@priya", testimonial: "Excellent service and very tasty food. Perfect for a quick family dinner.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5062.jpg" },
|
||||
{ id: "3", name: "Amit Gupta", handle: "@amit", testimonial: "Loved the fish fry, it's very authentic and reasonably priced.", imageSrc: "http://img.b2bpic.net/free-photo/person-holding-enjoying-paper-wrapped-sandwiches_52683-160704.jpg" },
|
||||
{ id: "4", name: "Suman Roy", handle: "@suman", testimonial: "Great variety, especially the Chinese items. Will visit again.", imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg" },
|
||||
{ id: "5", name: "Riya Basu", handle: "@riya", testimonial: "So clean and affordable. The staff is very helpful.", imageSrc: "http://img.b2bpic.net/free-photo/women-eating-traditional-italian-pizza-together_52683-110887.jpg" },
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Join our community of happy diners in Kolkata."
|
||||
@@ -250,21 +128,9 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "170+",
|
||||
description: "Menu Items",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "4.9",
|
||||
description: "Google Rating",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "Daily",
|
||||
description: "Fresh Service",
|
||||
},
|
||||
{ id: "m1", value: "170+", description: "Menu Items" },
|
||||
{ id: "m2", value: "4.9", description: "Google Rating" },
|
||||
{ id: "m3", value: "Daily", description: "Fresh Service" },
|
||||
]}
|
||||
title="Seven Square in Numbers"
|
||||
description="Proudly serving the Bediapara community."
|
||||
@@ -276,21 +142,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do you offer home delivery?",
|
||||
content: "Currently we focus on dine-in and kerbside pickup. You can order via our partners.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Is the restaurant AC?",
|
||||
content: "Yes, we are a fully air-conditioned restaurant.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "What are your operating hours?",
|
||||
content: "We are open daily until 10:30 PM.",
|
||||
},
|
||||
{ id: "q1", title: "Do you offer home delivery?", content: "Currently we focus on dine-in and kerbside pickup. You can order via our partners." },
|
||||
{ id: "q2", title: "Is the restaurant AC?", content: "Yes, we are a fully air-conditioned restaurant." },
|
||||
{ id: "q3", title: "What are your operating hours?", content: "We are open daily until 10:30 PM." },
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Answers to common questions about Seven Square."
|
||||
@@ -301,41 +155,30 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
text="Visit us at Vidyasagar Rd, Bediapara, Kolkata. Call us at 97353 77233 or 94327 44517 for reservations or pickup."
|
||||
buttons={[
|
||||
{
|
||||
text: "WhatsApp Us",
|
||||
href: "https://wa.me/919432744517",
|
||||
},
|
||||
{
|
||||
text: "View on Map",
|
||||
href: "https://www.google.com/maps/place/Vidyasagar+Rd,+Bediapara,+Kolkata",
|
||||
},
|
||||
{ text: "WhatsApp Us", href: "https://wa.me/919432744517" },
|
||||
{ text: "View on Map", href: "https://www.google.com/maps/place/Vidyasagar+Rd,+Bediapara,+Kolkata" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Seven Square"
|
||||
copyrightText="© 2025 Seven Square. All rights reserved."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "#",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Home", href: "#hero" }, { label: "Menu", href: "#menu" }, { label: "About", href: "#about" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy" }, { label: "Terms of Service" }] },
|
||||
{ title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] }
|
||||
]}
|
||||
bottomLeftText="© 2025 Seven Square. All rights reserved."
|
||||
bottomRightText="Authentic flavors of Kolkata"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<a href="https://wa.me/919432744517" className="fixed bottom-6 right-6 z-[60] p-4 bg-[#FF7B05] text-white rounded-full shadow-lg hover:scale-110 transition-transform" aria-label="WhatsApp Support">
|
||||
<MessageCircle size={28} />
|
||||
</a>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user