From aef4e1630ff36e93bbed52a074fa5952d511dcbc Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 12:00:24 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 225 ++++++++++++++++++----------------------------- 1 file changed, 86 insertions(+), 139 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9fe3540..4c01eb8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,6 +5,8 @@ import Link from "next/link"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import BlogCardThree from "@/components/sections/blog/BlogCardThree"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import TeamCardEleven from "@/components/sections/team/TeamCardEleven"; @@ -21,12 +23,6 @@ export default function HomePage() { { name: "Contact", id: "contact" }, ]; - const navigationLinks = [ - { label: "Home", href: "/" }, - { label: "Services", href: "/services" }, - { label: "Portfolio", href: "/portfolio" }, - ]; - return ( @@ -58,31 +52,20 @@ export default function HomePage() { tag="Premium Social Strategy" tagIcon={Sparkles} background={{ - variant: "floatingGradient", - }} + variant: "radial-gradient"}} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/young-happy-colleagues-sitting-office-coworking_171337-17717.jpg", - imageAlt: "Social media campaign analytics dashboard", - }, + imageSrc: "http://img.b2bpic.net/free-photo/young-happy-colleagues-sitting-office-coworking_171337-17717.jpg", imageAlt: "Social media campaign analytics dashboard"}, { - imageSrc: "http://img.b2bpic.net/free-photo/smiley-businesspeople-using-tablet-meeting-indoors_23-2148824852.jpg?_wi=1", - imageAlt: "Creative team collaboration", - }, + imageSrc: "http://img.b2bpic.net/free-photo/smiley-businesspeople-using-tablet-meeting-indoors_23-2148824852.jpg", imageAlt: "Creative team collaboration"}, { - imageSrc: "http://img.b2bpic.net/free-photo/old-lady-baker-presenting-food-recipe-cooking-podcast-from-kitchen-retired-blogger-chef-influencer-using-internet-technology-communicating-shooting-blogging-social-media-with-digital-equipment_482257-14413.jpg?_wi=1", - imageAlt: "Professional content creation", - }, + imageSrc: "http://img.b2bpic.net/free-photo/old-lady-baker-presenting-food-recipe-cooking-podcast-from-kitchen-retired-blogger-chef-influencer-using-internet-technology-communicating-shooting-blogging-social-media-with-digital-equipment_482257-14413.jpg", imageAlt: "Professional content creation"}, ]} buttons={[ { - text: "Explore Our Work", - href: "/portfolio", - }, + text: "Explore Our Work", href: "/portfolio"}, { - text: "Schedule Consultation", - href: "/contact", - }, + text: "Schedule Consultation", href: "/contact"}, ]} tagAnimation="slide-up" buttonAnimation="slide-up" @@ -98,13 +81,60 @@ export default function HomePage() { description="Founded by social media visionaries in 2018" subdescription="SocialForce | Trusted by 200+ brands globally" icon={Zap} - imageSrc="http://img.b2bpic.net/free-photo/smiley-businesspeople-using-tablet-meeting-indoors_23-2148824852.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/smiley-businesspeople-using-tablet-meeting-indoors_23-2148824852.jpg" imageAlt="SocialForce team collaboration" mediaAnimation="slide-up" useInvertedBackground={false} /> +
+ +
+ +
+ +
+
@@ -300,9 +247,9 @@ export default function HomePage() { { items: [ { label: "Home", href: "/" }, - { label: "Services", href: "/services" }, - { label: "Portfolio", href: "/portfolio" }, - { label: "About", href: "/" }, + { label: "Services", href: "#services" }, + { label: "Portfolio", href: "#portfolio" }, + { label: "About", href: "#about" }, ], }, { @@ -315,7 +262,7 @@ export default function HomePage() { }, { items: [ - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, -- 2.49.1