Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f435c96be5 | |||
| d873ef451b | |||
| dc3e2edeb7 | |||
| 30d6435437 | |||
| f856eedc1f | |||
| 05883133ae | |||
| ddb5f8d4af | |||
| 51697dad16 |
@@ -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,23 @@ 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="two-columns-alternating-heights"
|
||||
members={[
|
||||
{ id: "1", name: "Luke", role: "Lead Developer", imageSrc: "asset://image-1", imageAlt: "Portrait of Luke" },
|
||||
{ id: "2", name: "Caleb", role: "Creative Director", imageSrc: "asset://image-2", imageAlt: "Portrait of Caleb" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Let's Connect"
|
||||
@@ -176,13 +195,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