Merge version_2 into main #2
@@ -32,7 +32,8 @@ export default function BlogPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" }
|
||||
]}
|
||||
button={{ text: "Start Project", href: "#contact" }}
|
||||
/>
|
||||
@@ -65,13 +66,14 @@ export default function BlogPage() {
|
||||
title: "Product", items: [
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Work", href: "#work" }
|
||||
{ label: "Work", href: "#work" },
|
||||
{ label: "Team", href: "#team" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
},
|
||||
|
||||
@@ -9,6 +9,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import TeamCardOne from '@/components/sections/team/TeamCardOne';
|
||||
import { Headphones, Monitor, Palette, Rocket, Shield, Smartphone, Sparkles, Star, Tablet, TrendingUp, Users, Zap } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -32,7 +33,8 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Pricing", id: "pricing" }
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Team", id: "team" }
|
||||
]}
|
||||
button={{ text: "Start Project", href: "#contact" }}
|
||||
/>
|
||||
@@ -155,6 +157,25 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardOne
|
||||
title="Meet Our Team"
|
||||
description="Get to know the talented people behind our success"
|
||||
tag="Team"
|
||||
tagIcon={Users}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
members={[
|
||||
{ id: "1", name: "Sophie P.", role: "Digital Nomad", imageSrc: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", imageAlt: "Portrait of Sophie P." },
|
||||
{ id: "2", name: "Alex M.", role: "Creative Director", imageSrc: "https://img.b2bpic.net/free-photo/happy-young-professional-posing-office_1262-21170.jpg", imageAlt: "Portrait of Alex M." },
|
||||
{ id: "3", name: "Jordan K.", role: "Lead Developer", imageSrc: "https://img.b2bpic.net/free-photo/portrait-smiley-business-man_23-2148514859.jpg", imageAlt: "Portrait of Jordan K." },
|
||||
{ id: "4", name: "Casey R.", role: "UX Designer", imageSrc: "https://img.b2bpic.net/free-photo/happy-businessman-smiling-camera_1163-4660.jpg", imageAlt: "Portrait of Casey R." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Let's Connect"
|
||||
@@ -176,13 +197,14 @@ export default function LandingPage() {
|
||||
title: "Product", items: [
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Work", href: "#work" }
|
||||
{ label: "Work", href: "#work" },
|
||||
{ label: "Team", href: "#team" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Careers", href: "#" }
|
||||
]
|
||||
},
|
||||
|
||||
@@ -90,6 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{"name":"Work","id":"work"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -102,8 +103,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<FooterBaseReveal
|
||||
copyrightText="© 2025 Proofweb. All rights reserved."
|
||||
columns={[
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"},{"label":"Team","href":"#team"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"/blog"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"#contact"}]}
|
||||
]}
|
||||
/>
|
||||
@@ -137,6 +138,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{"name":"Work","id":"work"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -157,8 +159,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<FooterBaseReveal
|
||||
copyrightText="© 2025 Proofweb. All rights reserved."
|
||||
columns={[
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"},{"label":"Team","href":"#team"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"/blog"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"#contact"}]}
|
||||
]}
|
||||
/>
|
||||
@@ -191,6 +193,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
{"name":"Work","id":"work"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
||||
@@ -236,8 +239,8 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<FooterBaseReveal
|
||||
copyrightText="© 2025 Proofweb. All rights reserved."
|
||||
columns={[
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"},{"label":"Team","href":"#team"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"/blog"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"#contact"}]}
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -40,6 +40,7 @@ export default function ShopPage() {
|
||||
{"name":"Work","id":"work"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
@@ -52,8 +53,8 @@ export default function ShopPage() {
|
||||
<FooterBaseReveal
|
||||
copyrightText="© 2025 Proofweb. All rights reserved."
|
||||
columns={[
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"},{"label":"Team","href":"#team"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"/blog"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"#contact"}]}
|
||||
]}
|
||||
/>
|
||||
@@ -86,6 +87,7 @@ export default function ShopPage() {
|
||||
{"name":"Work","id":"work"},
|
||||
{"name":"Testimonials","id":"testimonials"},
|
||||
{"name":"Pricing","id":"pricing"},
|
||||
{"name":"Team","id":"team"},
|
||||
{"name":"Shop","id":"/shop"}
|
||||
]}
|
||||
button={{ text: "Cart", onClick: () => console.log("cart") }}
|
||||
@@ -106,8 +108,8 @@ export default function ShopPage() {
|
||||
<FooterBaseReveal
|
||||
copyrightText="© 2025 Proofweb. All rights reserved."
|
||||
columns={[
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"#"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Product","items":[{"label":"Services","href":"#services"},{"label":"Pricing","href":"#pricing"},{"label":"Work","href":"#work"},{"label":"Team","href":"#team"}]},
|
||||
{"title":"Company","items":[{"label":"About","href":"#"},{"label":"Blog","href":"/blog"},{"label":"Careers","href":"#"}]},
|
||||
{"title":"Legal","items":[{"label":"Privacy Policy","href":"#"},{"label":"Terms of Service","href":"#"},{"label":"Contact","href":"#contact"}]}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user