diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index e83af4c..4f8ca81 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -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: "#" } ] }, diff --git a/src/app/page.tsx b/src/app/page.tsx index c5feffe..9d45b90 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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() { /> +