8 Commits

Author SHA1 Message Date
f435c96be5 Merge version_3 into main
Merge version_3 into main
2026-02-18 21:41:20 +00:00
d873ef451b Update src/app/page.tsx 2026-02-18 21:41:16 +00:00
dc3e2edeb7 Merge version_2 into main
Merge version_2 into main
2026-02-18 20:04:46 +00:00
30d6435437 Update src/app/shop/page.tsx 2026-02-18 20:04:42 +00:00
f856eedc1f Update src/app/shop/[id]/page.tsx 2026-02-18 20:04:41 +00:00
05883133ae Update src/app/page.tsx 2026-02-18 20:04:40 +00:00
ddb5f8d4af Update src/app/blog/page.tsx 2026-02-18 20:04:39 +00:00
51697dad16 Merge version_1 into main
Merge version_1 into main
2026-02-18 19:56:18 +00:00
4 changed files with 43 additions and 16 deletions

View File

@@ -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: "#" }
]
},

View File

@@ -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: "#" }
]
},

View File

@@ -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"}]}
]}
/>

View File

@@ -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"}]}
]}
/>