Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 899602d352 | |||
| f895220491 | |||
| f41c3369de | |||
| 153b41823a | |||
| ac0b727c15 | |||
| e0111f83d7 | |||
| 3daceaea0c | |||
| ea90e0af8a | |||
| 20c3b936a9 | |||
| 2ab16b09ae | |||
| c103d3d475 |
1408
src/app/layout.tsx
1408
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -27,7 +27,7 @@ export default function LandingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="ShopHub"
|
||||
brandName="Cannabis Grow Shop"
|
||||
navItems={[
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "About", id: "about" },
|
||||
@@ -42,21 +42,21 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="SHOPHUB"
|
||||
description="Discover curated premium products from our exclusive collection. Shop luxury fashion, accessories, and gadgets with confidence."
|
||||
logoText="CANNABIS GROW SHOP"
|
||||
description="Discover premium grow equipment, nutrients, and supplies for your cannabis cultivation. Expert-grade products trusted by growers worldwide."
|
||||
buttons={[
|
||||
{ text: "Start Shopping", href: "products" },
|
||||
{ text: "Learn More", href: "about" }
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-store-with-abstract-concept-architecture_23-2150862028.jpg", imageAlt: "ShopHub main storefront showcase"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-store-with-abstract-concept-architecture_23-2150862028.jpg", imageAlt: "Cannabis Grow Shop main storefront"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-shopping-bags-mall_627829-8558.jpg", imageAlt: "Premium shopping experience"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-shopping-bags-mall_627829-8558.jpg", imageAlt: "Premium grow equipment showcase"
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-bag-with-scarf_140725-6390.jpg?_wi=1", imageAlt: "Luxury product collection"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-bag-with-scarf_140725-6390.jpg?_wi=1", imageAlt: "Professional grow supplies collection"
|
||||
}
|
||||
]}
|
||||
autoplayDelay={4000}
|
||||
@@ -67,19 +67,19 @@ export default function LandingPage() {
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
title="Featured Products"
|
||||
description="Browse our carefully selected premium items. Add to cart and enjoy seamless checkout."
|
||||
description="Browse our premium selection of grow lights, hydroponic systems, nutrients, and cultivation equipment. Everything you need for successful cultivation."
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Premium Leather Handbag", price: "$189.99", imageSrc: "http://img.b2bpic.net/free-photo/black-bag-with-scarf_140725-6390.jpg?_wi=2", imageAlt: "Premium leather handbag", initialQuantity: 1
|
||||
id: "1", name: "LED Grow puto ro 1000W", price: "$349.99", imageSrc: "http://img.b2bpic.net/free-photo/black-bag-with-scarf_140725-6390.jpg?_wi=2", imageAlt: "LED grow light professional model", initialQuantity: 1
|
||||
},
|
||||
{
|
||||
id: "2", name: "Smart Watch Pro", price: "$299.99", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unknown-woman-checks-fitness-results-smartwatch-monitors-pulse-dressed-casual-sweatshirt-carries-karemat-poses-outdoors-faceless-sportswoman-uses-modern-gadget-sport_273609-60647.jpg?_wi=1", imageAlt: "Smart watch pro model", initialQuantity: 1
|
||||
id: "2", name: "Complete Hydroponic System Kit", price: "$599.99", imageSrc: "http://img.b2bpic.net/free-photo/cropped-shot-unknown-woman-checks-fitness-results-smartwatch-monitors-pulse-dressed-casual-sweatshirt-carries-karemat-poses-outdoors-faceless-sportswoman-uses-modern-gadget-sport_273609-60647.jpg?_wi=1", imageAlt: "Hydroponic growing system kit", initialQuantity: 1
|
||||
},
|
||||
{
|
||||
id: "3", name: "Designer Sunglasses", price: "$159.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fashion-portrait-beautiful-woman-with-perfect-skin-big-amazing-smile-have-blonde-fluffy-curled-hairs-wearing-white-wither-sparkles-sweater-pearl-bracelet-round-sunglasses_291049-348.jpg", imageAlt: "Designer sunglasses", initialQuantity: 1
|
||||
id: "", name: "Premium Nutrient Solution Bundle", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/close-up-fashion-portrait-beautiful-woman-with-perfect-skin-big-amazing-smile-have-blonde-fluffy-curled-hairs-wearing-white-wither-sparkles-sweater-pearl-bracelet-round-sunglasses_291049-348.jpg", imageAlt: "Premium grow nutrients", initialQuantity: 1
|
||||
},
|
||||
{
|
||||
id: "4", name: "Wireless Headphones", price: "$249.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AglnAPREp2070EFrZOuJqaCmer/uploaded-1773022694495-wzsfkt3m.png", imageAlt: "Wireless headphones", initialQuantity: 1
|
||||
id: "4", name: "Climate Control Monitor", price: "$199.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AglnAPREp2070EFrZOuJqaCmer/uploaded-1773022694495-wzsfkt3m.png", imageAlt: "Smart climate control device", initialQuantity: 1
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -91,23 +91,23 @@ export default function LandingPage() {
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
title="ShopHub is your gateway to premium shopping. We curate the finest products from trusted brands worldwide."
|
||||
title="Cannabis Grow Shop is your trusted partner for premium cultivation equipment and supplies. We provide industry-leading products used by professional and home growers."
|
||||
metrics={[
|
||||
{
|
||||
icon: ShoppingCart,
|
||||
label: "Products Sold", value: "50K+"
|
||||
label: "Systems Sold", value: "12K+"
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Happy Customers", value: "25K+"
|
||||
label: "Satisfied Growers", value: "8K+"
|
||||
},
|
||||
{
|
||||
icon: Globe,
|
||||
label: "Countries Served", value: "45+"
|
||||
label: "Countries Served", value: "25+"
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
label: "Industry Awards", value: "12"
|
||||
label: "Expert Reviews", value: "500+"
|
||||
}
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
@@ -117,12 +117,12 @@ export default function LandingPage() {
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardNine
|
||||
title="Why Choose ShopHub"
|
||||
description="Experience superior service with our commitment to quality and customer satisfaction."
|
||||
title="Why Choose Cannabis Grow Shop"
|
||||
description="Experience superior cultivation support with our commitment to quality equipment, expert guidance, and customer success."
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Fast & Free Shipping", description: "Get your orders delivered quickly with our expedited shipping options and free delivery on orders over $50.", phoneOne: {
|
||||
title: "Expert-Grade Equipment", description: "Access professional-quality grow lights, hydroponic systems, and cultivation tools used by industry experts. Guaranteed performance and durability.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cargo-container-ship-harbor_1359-858.jpg"
|
||||
},
|
||||
phoneTwo: {
|
||||
@@ -131,7 +131,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Secure Payments", description: "Shop with confidence using our encrypted payment systems and multiple secure payment methods.", phoneOne: {
|
||||
title: "Complete Support & Guidance", description: "Get expert advice, growing guides, and technical support from our experienced cultivation specialists. We're here to ensure your success.", phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/erupi-erupee-digital-currency-background-watermark-style_1017-49403.jpg"
|
||||
},
|
||||
phoneTwo: {
|
||||
@@ -148,26 +148,26 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSix
|
||||
title="What Our Customers Say"
|
||||
description="Join thousands of satisfied shoppers who trust ShopHub for their premium shopping needs."
|
||||
title="What Our Growers Say"
|
||||
description="Join thousands of satisfied cultivators who trust Cannabis Grow Shop for premium products and expert support."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", handle: "@sarahj", testimonial: "Absolutely love shopping at ShopHub! The quality of products and customer service is exceptional. Highly recommended!", imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-4107.jpg?_wi=1", imageAlt: "Sarah Johnson"
|
||||
id: "1", name: "Marcus Thompson", handle: "@grower_m", testimonial: "Best grow shop I've found! The LED lights produced incredible yields and the customer support helped me optimize my setup perfectly.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-4107.jpg?_wi=1", imageAlt: "Marcus Thompson"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen", handle: "@mchen", testimonial: "Best online shopping experience I've had. Fast shipping and premium quality products at great prices.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-executive-taking-photo_1154-209.jpg?_wi=1", imageAlt: "Michael Chen"
|
||||
id: "2", name: "Jennifer Walsh", handle: "@jen_grows", testimonial: "The hydroponic system kit was excellent quality. Setup was easy and my plants thrived. Highly recommend Cannabis Grow Shop!", imageSrc: "http://img.b2bpic.net/free-photo/front-view-executive-taking-photo_1154-209.jpg?_wi=1", imageAlt: "Jennifer Walsh"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emily Rodriguez", handle: "@emilyrod", testimonial: "ShopHub has become my go-to for luxury items. The curation is impeccable and delivery is lightning fast!", imageSrc: "http://img.b2bpic.net/free-photo/serious-young-woman-closeup-emotion-concept_169016-65608.jpg", imageAlt: "Emily Rodriguez"
|
||||
id: "", name: "David Lopez", handle: "@lopezgrowing", testimonial: "Fantastic products and knowledgeable staff. The nutrient solutions dramatically improved my crop quality. Worth every dollar!", imageSrc: "http://img.b2bpic.net/free-photo/serious-young-woman-closeup-emotion-concept_169016-65608.jpg", imageAlt: "David Lopez"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Kim", handle: "@davidkim", testimonial: "Impressive product selection and outstanding customer support. ShopHub truly sets the standard for online retail.", imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-smiling_107420-84733.jpg", imageAlt: "David Kim"
|
||||
id: "4", name: "Sarah Chen", handle: "@sarah_cultivates", testimonial: "The climate control monitor is a game-changer. Real-time monitoring helped me maintain perfect growing conditions consistently.", imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-smiling_107420-84733.jpg", imageAlt: "Sarah Chen"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Jessica Martinez", handle: "@jmartinez", testimonial: "The best shopping platform I've found. Premium brands, authentic products, and reliable service every time.", imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-4107.jpg?_wi=2", imageAlt: "Jessica Martinez"
|
||||
id: "5", name: "Robert Anderson", handle: "@rob_gardens", testimonial: "Professional-grade equipment at fair prices. This shop understands what serious growers need. Became my go-to supplier!", imageSrc: "http://img.b2bpic.net/free-photo/fashion-portrait-young-elegant-woman_1328-4107.jpg?_wi=2", imageAlt: "Robert Anderson"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Robert Anderson", handle: "@randerson", testimonial: "Can't believe the quality and variety. ShopHub consistently delivers excellent products and service.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-executive-taking-photo_1154-209.jpg?_wi=2", imageAlt: "Robert Anderson"
|
||||
id: "6", name: "Michelle Park", handle: "@michelle_grow", testimonial: "Exceptional quality and reliability. My yields increased by 40% after switching to their products. Couldn't be happier!", imageSrc: "http://img.b2bpic.net/free-photo/front-view-executive-taking-photo_1154-209.jpg?_wi=2", imageAlt: "Michelle Park"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -179,10 +179,10 @@ export default function LandingPage() {
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Leading Brands"
|
||||
description="ShopHub partners with the world's most prestigious brands to bring you authentic, premium products."
|
||||
title="Trusted by Professional Growers"
|
||||
description="Cannabis Grow Shop partners with industry leaders and is trusted by thousands of successful cultivators worldwide."
|
||||
names={[
|
||||
"Luxury Fashion Co", "Premium Tech Inc", "Designer Accessories Ltd", "Elegant Watches Group", "Exclusive Brands Co", "Premium Quality Ltd", "Luxury Retail Group", "Elite Fashion Inc"
|
||||
"GrowTech Industries", "Hydro Solutions Pro", "Nutrient Masters Inc", "LED Innovation Group", "Premium Cultivation Co", "Expert Growing Systems", "Pro Grower Network", "Advanced Cultivation Labs"
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -193,36 +193,44 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
logoText="ShopHub"
|
||||
copyrightText="© 2025 ShopHub. All rights reserved."
|
||||
logoText="Cannabis Grow Shop"
|
||||
copyrightText="© 2025 Cannabis Grow Shop. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Shop", items: [
|
||||
{ label: "All Products", href: "products" },
|
||||
{ label: "Featured Items", href: "products" },
|
||||
{ label: "New Arrivals", href: "products" },
|
||||
{ label: "Sale", href: "products" }
|
||||
{ label: "Grow Lights", href: "products" },
|
||||
{ label: "Hydroponic Systems", href: "products" },
|
||||
{ label: "Nutrients & Supplements", href: "products" },
|
||||
{ label: "Climate Control", href: "products" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Features", href: "features" },
|
||||
{ label: "Testimonials", href: "testimonials" },
|
||||
{ label: "Contact", href: "#" }
|
||||
{ label: "Grower Reviews", href: "testimonials" },
|
||||
{ label: "Contact Us", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Help Center", href: "#" },
|
||||
{ label: "Shipping Info", href: "#" },
|
||||
{ label: "Returns", href: "#" },
|
||||
{ label: "Growing Guides", href: "#" },
|
||||
{ label: "Technical Support", href: "#" },
|
||||
{ label: "Shipping & Returns", href: "#" },
|
||||
{ label: "Privacy Policy", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contact", items: [
|
||||
{ label: "Email: info@growshop.com", href: "#" },
|
||||
{ label: "Phone: 1-800-GROW-PRO", href: "#" },
|
||||
{ label: "Hours: Mon-Fri 9AM-6PM EST", href: "#" },
|
||||
{ label: "Address: 123 Cultivation Blvd", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #120006e6;
|
||||
--primary-cta: #e63946;
|
||||
--background: #0a7039;
|
||||
--card: #0d4629;
|
||||
--foreground: #e6ffe6;
|
||||
--primary-cta: #80da9b;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta: #0a5931;
|
||||
--secondary-cta-text: #120006e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #e2e2e2;
|
||||
--accent: #38714a;
|
||||
--background-accent: #2c6541;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user