Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fc882955c9 | |||
| e6dc25bbfc | |||
| ae160f70d4 | |||
| 29108a4603 | |||
| ec5839987b | |||
| f1f4a676a8 | |||
| 87265dad11 | |||
| e86ddf5884 | |||
| f310a9886b |
@@ -1,37 +1,27 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Nunito_Sans } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Skycap Flower Pots & Gift Gallery - Premium Planters in Delhi", description: "Beautiful flower pots, decorative planters & thoughtful gifts in Bhajanpura, Delhi. Premium quality, affordable pricing. Open daily until 9 PM.", keywords: "flower pots, planters, decorative pots, gift items, home decor, Delhi, Bhajanpura", robots: {
|
||||
title: "Growseed – The Garden Shop | Premium Plants & Seeds in Delhi", description: "Bring life to your home and garden with premium plants, seeds, and gardening essentials. Located in Laxmi Nagar, Delhi. ⭐ 4.7 Rating (54 Reviews)", keywords: "plants, seeds, garden shop, gardening supplies, Laxmi Nagar, Delhi, decorative planters, indoor plants, outdoor plants", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Skycap Flower Pots & Gift Gallery", description: "Premium quality flower pots, decorative planters & gifts in Delhi", url: "https://skycap-flowers.com", siteName: "Skycap Flower Pots and Gift Gallery", type: "website", images: [
|
||||
title: "Growseed – The Garden Shop", description: "Premium plants, seeds, and gardening supplies in Laxmi Nagar, Delhi", url: "https://growseed-garden.com", siteName: "Growseed – The Garden Shop", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/gardening-concept-with-plants_23-2148000286.jpg", alt: "Skycap Flower Pots Gallery"},
|
||||
url: "http://img.b2bpic.net/free-photo/gardening-concept-with-plants_23-2148000286.jpg", alt: "Growseed Garden Shop"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Skycap Flower Pots & Gift Gallery - Delhi", description: "Premium quality flower pots & gifts in Bhajanpura, Delhi", images: ["http://img.b2bpic.net/free-photo/gardening-concept-with-plants_23-2148000286.jpg"],
|
||||
card: "summary_large_image", title: "Growseed – The Garden Shop", description: "Premium plants & seeds in Laxmi Nagar, Delhi", images: ["http://img.b2bpic.net/free-photo/gardening-concept-with-plants_23-2148000286.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
@@ -43,9 +33,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunitoSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
118
src/app/page.tsx
118
src/app/page.tsx
@@ -1,13 +1,13 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import { Heart, Leaf, Flower, Gift, Home, Sparkles, MapPin, Phone } from 'lucide-react';
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Leaf, Flower, Gift, Home, Sparkles, MapPin, Phone, Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -25,33 +25,32 @@ export default function LandingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="Skycap"
|
||||
brandName="Growseed"
|
||||
navItems={[
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Call Now", href: "tel:087000-12721"
|
||||
}}
|
||||
text: "Call Now", href: "tel:099909-02180"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
title="Beautiful Flower Pots & Unique Gift Items"
|
||||
description="Premium quality planters, decorative pots & thoughtful gifts for every occasion. Located in Bhajanpura, Delhi – we bring nature's beauty to your home and office."
|
||||
tag="Delhi's Premier Flower Pot Gallery"
|
||||
title="🌿 Growseed – The Garden Shop"
|
||||
description="Your Trusted Garden Center in Delhi 🌱. Bring life to your home and garden with premium plants, seeds, and gardening essentials. ⭐ Rating: 4.7 (54 Reviews) | 🕘 Opens: 4:30 PM | 🌆 Serving: Across Delhi"
|
||||
tag="Delhi's Premier Plant & Seed Destination"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "animated-grid" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/gardening-concept-with-plants_23-2148000286.jpg"
|
||||
imageAlt="Beautiful flower pots and decorative planters"
|
||||
imageAlt="Premium plants and garden supplies at Growseed"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "tel:087000-12721" },
|
||||
{ text: "Get Directions", href: "#contact" }
|
||||
{ text: "Call Now", href: "tel:099909-02180" },
|
||||
{ text: "Get Directions", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -59,15 +58,15 @@ export default function LandingPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="About Us"
|
||||
tag="About Growseed"
|
||||
tagIcon={Leaf}
|
||||
tagAnimation="slide-up"
|
||||
title="Welcome to Skycap Flower Pots and Gift Gallery"
|
||||
description="Your trusted source for premium flower pots, decorative planters, and thoughtful gifts in Bhajanpura, Delhi."
|
||||
subdescription="Quality. Affordability. Customer Satisfaction."
|
||||
icon={Heart}
|
||||
title="🌼 About Growseed – The Garden Shop"
|
||||
description="Located in the heart of Laxmi Nagar, Delhi, Growseed – The Garden Shop is a trusted destination for plant lovers and gardening enthusiasts."
|
||||
subdescription="We provide high-quality plants, seeds, pots, and gardening supplies at affordable prices. Whether you're starting a balcony garden or maintaining a full home garden, we have everything you need."
|
||||
icon={Flower}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/silhouette-person-city_23-2149211282.jpg"
|
||||
imageAlt="Skycap Flower Pots Gallery storefront"
|
||||
imageAlt="Growseed Garden Shop storefront in Laxmi Nagar"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -75,51 +74,54 @@ export default function LandingPage() {
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<FeatureCardTwentyFive
|
||||
title="Our Collections"
|
||||
description="Discover our wide range of premium products for every need"
|
||||
tag="Featured Products"
|
||||
title="🌱 Our Products & Services"
|
||||
description="Everything you need for a thriving garden and beautiful spaces"
|
||||
tag="Featured Collections"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Flower Pots", description: "Stylish ceramic, plastic, and designer pots for your home & balcony.", icon: Flower,
|
||||
title: "🌿 Indoor & Outdoor Plants", description: "Beautiful, healthy plants perfect for home, office, and balcony decoration.", icon: Leaf,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/birds-nest-fern-plant-beige-pot_53876-142823.jpg?_wi=1", imageAlt: "Ceramic flower pots collection"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/birds-nest-fern-plant-beige-pot_53876-142823.jpg?_wi=1", imageAlt: "Indoor plants collection"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-home-creative-interior-decoration-elements_628469-518.jpg?_wi=1", imageAlt: "Outdoor plants arrangement"},
|
||||
],
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-home-creative-interior-decoration-elements_628469-518.jpg?_wi=1", imageAlt: "Designer planters for indoor and outdoor"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Gift Items", description: "Perfect gifts for birthdays, anniversaries, festivals & special occasions.", icon: Gift,
|
||||
title: "🌸 Flowering & Seasonal Plants", description: "Bright and colorful plants to enhance your garden space.", icon: Flower,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gifts-christmas-table_1098-22260.jpg", imageAlt: "Gift items and decorative pieces"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gifts-christmas-table_1098-22260.jpg", imageAlt: "Flowering plants collection"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-home-creative-interior-decoration-elements_628469-518.jpg?_wi=2", imageAlt: "Seasonal plants display"},
|
||||
],
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-home-creative-interior-decoration-elements_628469-518.jpg?_wi=2", imageAlt: "Unique gift collections"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Home Decor", description: "Unique decorative items to enhance your living and working spaces.", icon: Home,
|
||||
title: "🌾 Seeds & Gardening Supplies", description: "Premium seeds, soil, fertilizers, pots, and tools for successful gardening.", icon: Gift,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-home-creative-interior-decoration-elements_628469-518.jpg?_wi=3", imageAlt: "Home decoration items"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-home-creative-interior-decoration-elements_628469-518.jpg?_wi=3", imageAlt: "Gardening supplies and seeds"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/birds-nest-fern-plant-beige-pot_53876-142823.jpg?_wi=2", imageAlt: "Soil, fertilizers and tools"},
|
||||
],
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/birds-nest-fern-plant-beige-pot_53876-142823.jpg?_wi=2", imageAlt: "Decorative planters for spaces"
|
||||
}
|
||||
]
|
||||
}
|
||||
title: "🪴 Decorative Planters & Pots", description: "Stylish pots available in various sizes and designs.", icon: Home,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/birds-nest-fern-plant-beige-pot_53876-142823.jpg", imageAlt: "Decorative planters collection"},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-home-creative-interior-decoration-elements_628469-518.jpg", imageAlt: "Premium pots and decorative containers"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Browse All Products", href: "#products" }
|
||||
{ text: "Browse All Products", href: "#products" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
@@ -127,32 +129,30 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Get In Touch"
|
||||
tag="Visit Us"
|
||||
tagIcon={MapPin}
|
||||
tagAnimation="slide-up"
|
||||
title="Visit Us in Bhajanpura, Delhi"
|
||||
description="C, 120/19, Gali Number 3, Block C 2, Bhajanpura, Tukhmirpur, Delhi – 110053 | Open Daily – Closes 9 PM"
|
||||
title="📍 Growseed – The Garden Shop"
|
||||
description="Laxmi Nagar, Delhi – 110092 | 📞 099909 02180 | Open: 4:30 PM onwards | Serving: Across Delhi"
|
||||
background={{ variant: "animated-grid" }}
|
||||
useInvertedBackground={false}
|
||||
buttonText="Call Us"
|
||||
inputPlaceholder="Your email"
|
||||
termsText="We respect your privacy. Call us at 087000 12721 for immediate assistance."
|
||||
termsText="We respect your privacy. Call us at 099909 02180 for immediate assistance and gardening advice."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Skycap"
|
||||
copyrightText="© 2025 Skycap Flower Pots and Gift Gallery. All rights reserved."
|
||||
logoText="Growseed"
|
||||
copyrightText="© 2025 Growseed – The Garden Shop. All rights reserved. Bringing nature closer to you."
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Phone,
|
||||
href: "tel:087000-12721", ariaLabel: "Call us"
|
||||
},
|
||||
href: "tel:099909-02180", ariaLabel: "Call Growseed"},
|
||||
{
|
||||
icon: MapPin,
|
||||
href: "#contact", ariaLabel: "Visit our store"
|
||||
}
|
||||
href: "#contact", ariaLabel: "Visit our store in Laxmi Nagar"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-nunito-sans), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-nunito-sans), sans-serif;
|
||||
font-family: var(--font-poppins), sans-serif;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user