Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cf496bd4a9 | |||
| ef7bc8ea9c | |||
| f4d4adbe3d | |||
| e976bebb6b | |||
| f18cb10ee1 | |||
| e5781f8fa4 | |||
| 03200ebf15 | |||
| 3e915413ba | |||
| 2f27fc2f8e |
1425
src/app/layout.tsx
1425
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
207
src/app/page.tsx
207
src/app/page.tsx
@@ -1,190 +1,63 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import { Github, Linkedin, Mail, ExternalLink, Code, Zap, Users } from "lucide-react";
|
||||||
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
|
||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
|
||||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
|
||||||
import { Clock, Heart, MapPin, Package, Phone, SmilePlus, Star, Store, ThumbsUp, CheckCircle } from 'lucide-react';
|
|
||||||
|
|
||||||
export default function LandingPage() {
|
const HomePage = () => {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-bubble"
|
defaultButtonVariant="text-stagger"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="soft"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="medium"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="fluid"
|
background="circleGradient"
|
||||||
cardStyle="gradient-radial"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="diagonal-gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="radial-glow"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Products", id: "products" },
|
{ name: "Contact", id: "contact" }
|
||||||
{ name: "Contact", id: "contact" },
|
|
||||||
{ name: "Call Us", id: "tel:+919876543210" }
|
|
||||||
]}
|
]}
|
||||||
brandName="Surya"
|
brandName="Portfolio"
|
||||||
bottomLeftText="Taleigao, Goa"
|
button={{ text: "Get Started", href: "https://example.com" }}
|
||||||
bottomRightText="+91 98765 43210"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardScroll
|
<HeroPersonalLinks
|
||||||
title="Your Trusted Local Grocery & Wine Store in Taleigao"
|
background={{ variant: "plain" }}
|
||||||
description="Fresh groceries, household essentials, and quality wine — all in one convenient place. Visit Surya Supermarket & Wine Store today and experience our exceptional service."
|
title="Full-Stack Developer & Designer | Turning Ideas Into Code"
|
||||||
tag="Welcome to Surya"
|
|
||||||
tagIcon={Store}
|
|
||||||
tagAnimation="entrance-slide"
|
|
||||||
background={{ variant: "sparkles-gradient" }}
|
|
||||||
buttons={[
|
|
||||||
{ text: "📞 Call Now", href: "tel:+919876543210" },
|
|
||||||
{ text: "📍 Get Directions", href: "https://maps.google.com/?q=17/33+Amral+Bandh+Taleigao+Goa+403004" }
|
|
||||||
]}
|
|
||||||
buttonAnimation="entrance-slide"
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-women-shopping-groceries_23-2149461750.jpg"
|
|
||||||
imageAlt="Surya Supermarket storefront in Taleigao, Goa"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
|
||||||
<InlineImageSplitTextAbout
|
|
||||||
heading={[
|
|
||||||
{ type: "text", content: "Your Neighborhood Grocery & Wine Destination" }
|
|
||||||
]}
|
|
||||||
buttons={[
|
|
||||||
{ text: "Visit Us", href: "tel:+919876543210" },
|
|
||||||
{ text: "Learn More", href: "#contact" }
|
|
||||||
]}
|
|
||||||
buttonAnimation="entrance-slide"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="products" data-section="products">
|
|
||||||
<FeatureCardEight
|
|
||||||
title="What You'll Find at Surya"
|
|
||||||
description="We offer a wide selection of quality products to meet all your daily needs."
|
|
||||||
tag="Product Categories"
|
|
||||||
tagIcon={Package}
|
|
||||||
tagAnimation="entrance-slide"
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
title: "Fresh Groceries", description: "High-quality vegetables, fruits, and fresh produce sourced daily for maximum freshness.", imageSrc: "http://img.b2bpic.net/free-photo/variety-vegetables-isolated-blue-table_114579-19958.jpg?_wi=1", imageAlt: "Fresh vegetables and produce"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
title: "Indian Food Items", description: "Authentic Indian spices, rice, dal, flours, and traditional ingredients for your favorite recipes.", imageSrc: "http://img.b2bpic.net/free-photo/variety-vegetables-isolated-blue-table_114579-19958.jpg?_wi=2", imageAlt: "Indian groceries and spices"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
title: "Household Essentials", description: "Complete range of household products, cleaning supplies, and daily necessities.", imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-supermarket-grocery-store-background_640221-331.jpg", imageAlt: "Household essentials section"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 4,
|
|
||||||
title: "Wine & Beverages", description: "Curated selection of quality wines and beverages for every occasion and preference.", imageSrc: "http://img.b2bpic.net/free-photo/blurred-photo-supermarket-your-advertising_185193-110565.jpg", imageAlt: "Wine and beverage selection"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
buttonAnimation="entrance-slide"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="benefits" data-section="benefits">
|
|
||||||
<MetricCardFourteen
|
|
||||||
title="Trusted by the Local Community"
|
|
||||||
tag="Why Choose Us"
|
|
||||||
tagAnimation="entrance-slide"
|
|
||||||
metrics={[
|
|
||||||
{
|
|
||||||
id: "1", value: "4.5★", description: "Google rating from 22 customer reviews. Your trust and satisfaction matter to us."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2", value: "20+", description: "Years of serving the Taleigao community with friendly service and quality products."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3", value: "500+", description: "Products in stock including fresh groceries, essentials, and premium wines."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4", value: "Daily", description: "Fresh stock updates. Open until 10 PM for your convenience every single day."
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
metricsAnimation="entrance-slide"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardTwo
|
|
||||||
title="What Our Customers Say"
|
|
||||||
description="Read real reviews from satisfied customers in our community."
|
|
||||||
tag="Customer Reviews"
|
|
||||||
tagIcon={Star}
|
|
||||||
tagAnimation="entrance-slide"
|
|
||||||
testimonials={[
|
|
||||||
{
|
|
||||||
id: "1", name: "Priya Sharma", role: "Local Resident", testimonial: "Nice shop and nice person, good behavior. They always have fresh groceries and help you find exactly what you need. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", imageAlt: "Priya Sharma", icon: ThumbsUp
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2", name: "Rajesh Mendes", role: "Regular Customer", testimonial: "Great shop & quick customer service. The wine selection is impressive and prices are fair. This is my go-to supermarket in Taleigao!", imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg?_wi=1", imageAlt: "Rajesh Mendes", icon: Heart
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3", name: "Anjali Desai", role: "Frequent Visitor", testimonial: "Excellent variety of Indian groceries and household items. The staff is always helpful and friendly. Can't ask for better service!", imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg?_wi=2", imageAlt: "Anjali Desai", icon: CheckCircle
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4", name: "Michael Costa", role: "Tourist & Customer", testimonial: "Found everything I needed for my stay in Goa. Great selection of wine and local products. Very convenient location and open late!", imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg?_wi=3", imageAlt: "Michael Costa", icon: SmilePlus
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
carouselMode="buttons"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactSplit
|
|
||||||
tag="Get in Touch"
|
|
||||||
title="Visit Us or Contact Today"
|
|
||||||
description="Whether you're looking for fresh groceries, household essentials, or quality wine, we're here to help. Call us, visit in person, or fill out the form below."
|
|
||||||
tagIcon={MapPin}
|
|
||||||
tagAnimation="entrance-slide"
|
|
||||||
background={{ variant: "gradient-bars" }}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-vector/best-prices-background_23-2147602509.jpg"
|
|
||||||
imageAlt="Surya Supermarket location map"
|
|
||||||
mediaAnimation="entrance-slide"
|
|
||||||
mediaPosition="right"
|
|
||||||
inputPlaceholder="Enter your email"
|
|
||||||
buttonText="Send Inquiry"
|
|
||||||
termsText="By sending this inquiry, you agree to receive contact from Surya Supermarket & Wine Store."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterCard
|
|
||||||
logoText="Surya"
|
|
||||||
copyrightText="© 2025 Surya Supermarket & Wine Store | सूर्य सुपरमार्केट एंड वाइन स्टोर | Taleigao, Goa"
|
|
||||||
socialLinks={[
|
socialLinks={[
|
||||||
{ icon: Phone, href: "tel:+919876543210", ariaLabel: "Call Surya Supermarket" },
|
{ icon: Github, label: "GitHub", href: "https://github.com" },
|
||||||
{ icon: MapPin, href: "https://maps.google.com/?q=17/33+Amral+Bandh+Taleigao+Goa+403004", ariaLabel: "Get directions to Surya Supermarket" },
|
{ icon: Linkedin, label: "LinkedIn", href: "https://linkedin.com" },
|
||||||
{ icon: Clock, href: "#", ariaLabel: "Store hours: Open daily until 10 PM" }
|
{ icon: Mail, label: "Email", href: "mailto:hello@example.com" }
|
||||||
|
]}
|
||||||
|
linkCards={[
|
||||||
|
{
|
||||||
|
icon: Code,
|
||||||
|
title: "My Portfolio", description: "Check out my latest projects and work", button: { text: "View", href: "https://example.com/portfolio" }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Zap,
|
||||||
|
title: "Latest Project", description: "A new design system built with React", button: { text: "Explore", href: "https://example.com/project" }
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Users,
|
||||||
|
title: "Connect With Me", description: "Let's talk about your next project", button: { text: "Contact", href: "mailto:hello@example.com" }
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
};
|
||||||
|
|
||||||
|
export default HomePage;
|
||||||
Reference in New Issue
Block a user