Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9d77cff7ce | |||
| 7df0f5b54c | |||
| ad28ad3999 | |||
| eaaa070ecd | |||
| 2667d856f4 | |||
| ca19224434 | |||
| 44bd461a13 | |||
| 2a4d90eb2e |
@@ -32,9 +32,11 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#home"},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Services", id: "#services"},
|
||||
{
|
||||
name: "Products", id: "/products"},
|
||||
{
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
@@ -195,19 +197,19 @@ export default function LandingPage() {
|
||||
id: "starter", title: "Starter Pack", price: "$99", period: "per service", features: [
|
||||
"Basic Service Module", "Initial Consultation", "Standard Support"],
|
||||
button: {
|
||||
text: "Get Started", href: "https://www.fiverr.com/yourprofile"}, // Updated to Fiverr profile
|
||||
text: "Get Started", href: "https://www.fiverr.com/yourprofile"},
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/business-template-design_23-2151491290.jpg", imageAlt: "Starter pack icon"},
|
||||
{
|
||||
id: "growth", title: "Growth Engine", price: "$249", period: "per service", features: [
|
||||
"Enhanced Service Module", "Dedicated Account Manager", "Priority Support", "Monthly Reporting"],
|
||||
button: {
|
||||
text: "Scale Up", href: "https://www.fiverr.com/yourprofile"}, // Updated to Fiverr profile
|
||||
text: "Scale Up", href: "https://www.fiverr.com/yourprofile"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/think-outside-box-concept_53876-133687.jpg", imageAlt: "Growth engine icon"},
|
||||
{
|
||||
id: "pro", title: "Pro Elite", price: "$499", period: "per service", features: [
|
||||
"Premium Service Module", "Custom Strategy Development", "24/7 Expert Support", "Advanced Analytics & Insights", "Exclusive Tools Access"],
|
||||
button: {
|
||||
text: "Achieve More", href: "https://www.fiverr.com/yourprofile"}, // Updated to Fiverr profile
|
||||
text: "Achieve More", href: "https://www.fiverr.com/yourprofile"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/online-marketing-advertising-branding-strategy-concept_53876-134046.jpg", imageAlt: "Pro elite icon"},
|
||||
]}
|
||||
title="Simple & Transparent Pricing"
|
||||
@@ -280,19 +282,22 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Web Development", href: "https://www.fiverr.com/yourprofile/gig-for-web-development"}, // Updated to Fiverr gig
|
||||
label: "Web Development", href: "https://www.fiverr.com/yourprofile/gig-for-web-development"},
|
||||
{
|
||||
label: "SEO Optimization", href: "https://www.fiverr.com/yourprofile/gig-for-seo-optimization"}, // Updated to Fiverr gig
|
||||
label: "SEO Optimization", href: "https://www.fiverr.com/yourprofile/gig-for-seo-optimization"},
|
||||
{
|
||||
label: "Digital Marketing", href: "https://www.fiverr.com/yourprofile/gig-for-digital-marketing"}, // Updated to Fiverr gig
|
||||
label: "Digital Marketing", href: "https://www.fiverr.com/yourprofile/gig-for-digital-marketing"},
|
||||
{
|
||||
label: "Social Media Management", href: "https://www.fiverr.com/yourprofile/gig-for-social-media-management"}, // Updated to Fiverr gig
|
||||
label: "Social Media Management", href: "https://www.fiverr.com/yourprofile/gig-for-social-media-management"},
|
||||
{
|
||||
label: "Content Creation", href: "https://www.fiverr.com/yourprofile/gig-for-social-media-content-creation"}, // Updated to Fiverr gig
|
||||
label: "Content Creation", href: "https://www.fiverr.com/yourprofile/gig-for-social-media-content-creation"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "Products", href: "/products"
|
||||
},
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
@@ -302,7 +307,7 @@ export default function LandingPage() {
|
||||
{
|
||||
label: "FAQ", href: "#faq"},
|
||||
{
|
||||
label: "Our Fiverr Profile", href: "https://www.fiverr.com/yourprofile"} // Added Fiverr profile link
|
||||
label: "Our Fiverr Profile", href: "https://www.fiverr.com/yourprofile"}
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
144
src/app/products/page.tsx
Normal file
144
src/app/products/page.tsx
Normal file
@@ -0,0 +1,144 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function ProductsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="medium"
|
||||
sizing="large"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"
|
||||
},
|
||||
{
|
||||
name: "Services", id: "#services"
|
||||
},
|
||||
{
|
||||
name: "Products", id: "/products"
|
||||
},
|
||||
{
|
||||
name: "About", id: "#about"
|
||||
},
|
||||
{
|
||||
name: "Pricing", id: "#pricing"
|
||||
},
|
||||
{
|
||||
name: "Testimonials", id: "#testimonials"
|
||||
},
|
||||
{
|
||||
name: "FAQ", id: "#faq"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "#contact"
|
||||
},
|
||||
{
|
||||
name: "Our Fiverr Profile", id: "https://www.fiverr.com/yourprofile"
|
||||
}
|
||||
]}
|
||||
brandName="Digital Growth Services"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardFour
|
||||
title="Our Expert Services"
|
||||
description="Discover our range of digital services designed to boost your online presence and drive growth."
|
||||
products={[
|
||||
{
|
||||
id: "wordpress-development", name: "WordPress Development", price: "Starting at $300", variant: "Web Solutions", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EZUS0swKkjjr37EvqbkEjkTSNN/uploaded-1780386225985-t3e6ydbb.png?_wi=1", imageAlt: "WordPress logo on a digital screen, representing website development services"},
|
||||
{
|
||||
id: "shopify-development", name: "Shopify Web Development & Redesign", price: "Starting at $450", variant: "E-commerce Solutions", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EZUS0swKkjjr37EvqbkEjkTSNN/uploaded-1780386225985-t3e6ydbb.png?_wi=2", imageAlt: "Shopify shopping bag icon, symbolizing e-commerce store development and redesign"},
|
||||
{
|
||||
id: "digital-marketing", name: "Digital Marketing", price: "Starting at $250", variant: "Growth Strategies", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EZUS0swKkjjr37EvqbkEjkTSNN/uploaded-1780386225985-t3e6ydbb.png?_wi=3", imageAlt: "Upward trend line on a graph, representing digital marketing success and growth"},
|
||||
{
|
||||
id: "content-creation", name: "Content Creation", price: "Starting at $150", variant: "Engagement & Brand", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EZUS0swKkjjr37EvqbkEjkTSNN/uploaded-1780386225985-t3e6ydbb.png?_wi=4", imageAlt: "Person writing on a notepad with creative ideas, symbolizing content creation services"},
|
||||
{
|
||||
id: "social-media-management", name: "Social Media Management", price: "Starting at $200", variant: "Social Presence", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EZUS0swKkjjr37EvqbkEjkTSNN/uploaded-1780386225985-t3e6ydbb.png?_wi=5", imageAlt: "Social media icons floating around a smartphone, indicating social media management services"}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
textboxLayout="default"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Digital Growth Services"
|
||||
columns={[
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Web Development", href: "https://www.fiverr.com/yourprofile/gig-for-web-development"
|
||||
},
|
||||
{
|
||||
label: "SEO Optimization", href: "https://www.fiverr.com/yourprofile/gig-for-seo-optimization"
|
||||
},
|
||||
{
|
||||
label: "Digital Marketing", href: "https://www.fiverr.com/yourprofile/gig-for-digital-marketing"
|
||||
},
|
||||
{
|
||||
label: "Social Media Management", href: "https://www.fiverr.com/yourprofile/gig-for-social-media-management"
|
||||
},
|
||||
{
|
||||
label: "Content Creation", href: "https://www.fiverr.com/yourprofile/gig-for-social-media-content-creation"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "Products", href: "/products"
|
||||
},
|
||||
{
|
||||
label: "About Us", href: "#about"
|
||||
},
|
||||
{
|
||||
label: "Pricing", href: "#pricing"
|
||||
},
|
||||
{
|
||||
label: "Testimonials", href: "#testimonials"
|
||||
},
|
||||
{
|
||||
label: "FAQ", href: "#faq"
|
||||
},
|
||||
{
|
||||
label: "Our Fiverr Profile", href: "https://www.fiverr.com/yourprofile"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"
|
||||
},
|
||||
{
|
||||
label: "Terms of Service", href: "#"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 Digital Growth Services. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user