7 Commits

Author SHA1 Message Date
c1c9d2a6b2 Update src/app/products/page.tsx 2026-03-06 10:52:16 +00:00
eda96ca203 Update src/app/page.tsx 2026-03-06 10:52:15 +00:00
1b9155fcc5 Add src/app/products/page.tsx 2026-03-06 10:51:25 +00:00
b4c89856b9 Update src/app/page.tsx 2026-03-06 10:51:24 +00:00
aefe1613ff Merge version_2 into main
Merge version_2 into main
2026-03-05 13:14:29 +00:00
8c83203170 Update src/app/page.tsx 2026-03-05 13:14:25 +00:00
ed487f7147 Merge version_1 into main
Merge version_1 into main
2026-03-05 11:47:44 +00:00
2 changed files with 145 additions and 8 deletions

View File

@@ -34,7 +34,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "Order Now", href: "#collections" text: "Order Now", href: "/products"
}} }}
/> />
</div> </div>
@@ -106,26 +106,26 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
features={[ features={[
{ {
id: "01", title: "Flower Bouquets", description: "Fresh, beautiful bouquets arranged with care. Perfect for expressing emotions.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bouquet-flowers-vase-table_23-2148075414.jpg", imageAlt: "flower bouquet fresh flowers floral arrangement" id: "01", title: "Flower Bouquets", description: "Fresh, beautiful bouquets arranged with care. Perfect for expressing emotions.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bouquet-flowers-vase-table_23-2148075414.jpg?_wi=1", imageAlt: "flower bouquet fresh flowers floral arrangement"
}, },
{ {
id: "02", title: "Gift Hampers", description: "Premium curated hampers with chocolates, wines, and gourmet treats.", imageSrc: "http://img.b2bpic.net/free-photo/dried-fruits-nuts-wooden-bag-with-bottle-wine_114579-30033.jpg", imageAlt: "gift hamper premium box gift basket" id: "02", title: "Gift Hampers", description: "Premium curated hampers with chocolates, wines, and gourmet treats.", imageSrc: "http://img.b2bpic.net/free-photo/dried-fruits-nuts-wooden-bag-with-bottle-wine_114579-30033.jpg?_wi=1", imageAlt: "gift hamper premium box gift basket"
}, },
{ {
id: "03", title: "Personalized Gifts", description: "Custom gifts with names, photos, and special messages.", imageSrc: "http://img.b2bpic.net/free-photo/present-box-craft-paper-with-tag-decorative-coniferous-branches_23-2147963967.jpg", imageAlt: "personalized gift custom gift engraved" id: "03", title: "Personalized Gifts", description: "Custom gifts with names, photos, and special messages.", imageSrc: "http://img.b2bpic.net/free-photo/present-box-craft-paper-with-tag-decorative-coniferous-branches_23-2147963967.jpg?_wi=1", imageAlt: "personalized gift custom gift engraved"
}, },
{ {
id: "04", title: "Romantic Gifts", description: "Special gifts for anniversaries, proposals, and valentine celebrations.", imageSrc: "http://img.b2bpic.net/free-photo/loving-husband-closing-eyes-wife-presenting-romantic-surprise-gift_1163-4812.jpg", imageAlt: "romantic gift anniversary gift couple" id: "04", title: "Romantic Gifts", description: "Special gifts for anniversaries, proposals, and valentine celebrations.", imageSrc: "http://img.b2bpic.net/free-photo/loving-husband-closing-eyes-wife-presenting-romantic-surprise-gift_1163-4812.jpg?_wi=1", imageAlt: "romantic gift anniversary gift couple"
}, },
{ {
id: "05", title: "Birthday Specials", description: "Fun and memorable gift ideas to make birthdays unforgettable.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-unwrapping-gifts_23-2148248753.jpg", imageAlt: "birthday gift celebration party" id: "05", title: "Birthday Specials", description: "Fun and memorable gift ideas to make birthdays unforgettable.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-unwrapping-gifts_23-2148248753.jpg?_wi=1", imageAlt: "birthday gift celebration party"
}, },
{ {
id: "06", title: "Corporate Gifts", description: "Professional, premium gifts for corporate clients and employees.", imageSrc: "http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-gift-box_140725-163936.jpg", imageAlt: "corporate gift business gift professional" id: "06", title: "Corporate Gifts", description: "Professional, premium gifts for corporate clients and employees.", imageSrc: "http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-gift-box_140725-163936.jpg?_wi=1", imageAlt: "corporate gift business gift professional"
} }
]} ]}
buttons={[ buttons={[
{ text: "View Full Catalog", href: "#contact" } { text: "View Full Catalog", href: "/products" }
]} ]}
/> />
</div> </div>
@@ -200,6 +200,9 @@ export default function LandingPage() {
names={[ names={[
"Google Reviews", "Trusted by Families", "Local Business Leader", "Award Winning Service", "Premium Partner", "Customer Favorite", "Recommended Gifts", "Hyderabad Best" "Google Reviews", "Trusted by Families", "Local Business Leader", "Award Winning Service", "Premium Partner", "Customer Favorite", "Recommended Gifts", "Hyderabad Best"
]} ]}
logos={[
"https://www.gstatic.com/images/branding/product/1x/google_maps_48dp.png", "https://www.trustpilot.com/static/images/trustmark-png", "https://www.gstatic.com/images/branding/product/1x/google_reviews_48dp.png", "https://www.justdial.com/static/images/logo.png", "https://www.gstatic.com/images/branding/product/1x/google_mybusiness_48dp.png", "https://www.hyderabadinfo.com/images/logo.png", "https://www.gstatic.com/images/branding/product/1x/google_search_48dp.png", "https://www.gstatic.com/images/branding/product/1x/google_local_48dp.png"
]}
speed={40} speed={40}
showCard={true} showCard={true}
/> />

134
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,134 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Gift, ArrowLeft } from 'lucide-react';
import Link from 'next/link';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles"
background="noise"
cardStyle="soft-shadow"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Trip Over Gifts"
navItems={[
{ name: "Collections", id: "products" },
{ name: "Why Us", id: "/" },
{ name: "Reviews", id: "/" },
{ name: "Contact", id: "/" }
]}
button={{
text: "Order Now", href: "/products"
}}
/>
</div>
<div style={{ paddingTop: "80px" }}>
<Link href="/" className="inline-flex items-center gap-2 px-6 py-3 text-sm font-medium hover:opacity-70 transition-opacity">
<ArrowLeft size={18} />
Back to Home
</Link>
</div>
<div id="products" data-section="products">
<FeatureCardThree
title="Our Complete Gift Catalog"
description="Browse our entire collection of gifts, hampers, flowers, and personalized items available for order"
tag="All Available Items"
tagIcon={Gift}
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
features={[
{
id: "01", title: "Red Rose Bouquet", description: "12 fresh red roses beautifully arranged with green foliage and premium wrapping.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bouquet-flowers-vase-table_23-2148075414.jpg?_wi=2", imageAlt: "red rose bouquet"
},
{
id: "02", title: "Premium Chocolate Hamper", description: "Assorted gourmet chocolates, truffles, and confections in elegant gift box with ribbon.", imageSrc: "http://img.b2bpic.net/free-photo/dried-fruits-nuts-wooden-bag-with-bottle-wine_114579-30033.jpg?_wi=2", imageAlt: "chocolate hamper premium box"
},
{
id: "03", title: "Personalized Name Frame", description: "Custom wooden frame with engraved name and date. Perfect for desk or bedside.", imageSrc: "http://img.b2bpic.net/free-photo/present-box-craft-paper-with-tag-decorative-coniferous-branches_23-2147963967.jpg?_wi=2", imageAlt: "personalized name frame"
},
{
id: "04", title: "Romantic Couple's Gift Set", description: "Luxury candle, chocolates, and personalized card set for anniversaries and special occasions.", imageSrc: "http://img.b2bpic.net/free-photo/loving-husband-closing-eyes-wife-presenting-romantic-surprise-gift_1163-4812.jpg?_wi=2", imageAlt: "romantic couple's gift set"
},
{
id: "05", title: "Birthday Celebration Box", description: "Party essentials including balloons, decorations, chocolates, and personalized banner.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-unwrapping-gifts_23-2148248753.jpg?_wi=2", imageAlt: "birthday celebration box"
},
{
id: "06", title: "Corporate Executive Hamper", description: "Premium wine, gourmet snacks, and luxury items in sophisticated corporate packaging.", imageSrc: "http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-gift-box_140725-163936.jpg?_wi=2", imageAlt: "corporate executive hamper"
},
{
id: "07", title: "Sunflower Sunshine Bouquet", description: "Bright yellow sunflowers with complementary seasonal flowers for cheerful gifting.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bouquet-flowers-vase-table_23-2148075414.jpg?_wi=3", imageAlt: "sunflower bouquet"
},
{
id: "08", title: "Gourmet Tea & Coffee Set", description: "Selection of premium teas, coffee blends, and biscuits in beautiful gift packaging.", imageSrc: "http://img.b2bpic.net/free-photo/dried-fruits-nuts-wooden-bag-with-bottle-wine_114579-30033.jpg?_wi=3", imageAlt: "gourmet tea coffee set"
},
{
id: "09", title: "Photo Personalized Mug", description: "Custom ceramic mug with your favorite photo and custom text. Dishwasher safe.", imageSrc: "http://img.b2bpic.net/free-photo/present-box-craft-paper-with-tag-decorative-coniferous-branches_23-2147963967.jpg?_wi=3", imageAlt: "personalized photo mug"
},
{
id: "10", title: "Luxury Spa Gift Set", description: "Bath bombs, scented candles, luxury soaps, and relaxation essentials for ultimate pampering.", imageSrc: "http://img.b2bpic.net/free-photo/loving-husband-closing-eyes-wife-presenting-romantic-surprise-gift_1163-4812.jpg?_wi=3", imageAlt: "luxury spa gift set"
},
{
id: "11", title: "Anniversary Special Combo", description: "Red roses, chocolate truffles, personalized card, and romantic gift wrapping.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-unwrapping-gifts_23-2148248753.jpg?_wi=3", imageAlt: "anniversary special combo"
},
{
id: "12", title: "New Baby Welcome Hamper", description: "Soft toys, baby care items, and cute accessories for welcoming newborns.", imageSrc: "http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-gift-box_140725-163936.jpg?_wi=3", imageAlt: "baby welcome hamper"
}
]}
buttons={[
{ text: "Call +91 77299 35329 to Order", href: "tel:+917729935329" },
{ text: "WhatsApp Order", href: "https://wa.me/917729935329?text=Hi%20Trip%20Over%20Gifts%2C%20I%27d%20like%20to%20order%20from%20your%20catalog" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Quick Links", items: [
{ label: "Home", href: "/" },
{ label: "Collections", href: "/#collections" },
{ label: "Reviews", href: "/#reviews" },
{ label: "Contact Us", href: "/#contact" }
]
},
{
title: "Contact", items: [
{ label: "📞 +91 77299 35329", href: "tel:+917729935329" },
{ label: "📍 Himayatnagar, Hyderabad", href: "https://maps.google.com/?q=Trip+Over+Gifts+Himayatnagar" },
{ label: "💬 WhatsApp Us", href: "https://wa.me/917729935329" },
{ label: "🕐 10 AM - 8 PM Daily", href: "#" }
]
},
{
title: "Services", items: [
{ label: "Same-Day Delivery", href: "/#contact" },
{ label: "Custom Personalization", href: "/#contact" },
{ label: "Corporate Gifts", href: "/#contact" },
{ label: "Gift Consultation", href: "/#contact" }
]
}
]}
copyrightText="© 2025 Trip Over Gifts | Hyderabad's Premier Gift Store"
/>
</div>
</ThemeProvider>
);
}