diff --git a/src/app/page.tsx b/src/app/page.tsx
index 70200ac..b5c415d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -10,42 +10,41 @@ import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FooterMedia from "@/components/sections/footer/FooterMedia";
-import { Sparkles, Lightbulb, Target, Zap, Award, Users, Heart, CheckCircle, Phone } from "lucide-react";
+import ContactFaq from "@/components/sections/contact/ContactFaq";
+import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
+import { Sparkles, Lightbulb, Target, Zap, Award, Users, Heart, CheckCircle, Phone, Linkedin, Twitter, Dribbble, Github } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
- { name: "Services", id: "/services" },
- { name: "Portfolio", id: "/portfolio" },
- { name: "Team", id: "/team" },
+ { name: "Services", id: "#services" },
+ { name: "Portfolio", id: "#portfolio" },
+ { name: "Team", id: "#team" },
];
const footerColumns = [
{
- title: "Services",
- items: [
- { label: "Web Design", href: "/services" },
- { label: "App Development", href: "/services" },
- { label: "Digital Marketing", href: "/services" },
- { label: "Branding", href: "/services" },
+ title: "Services", items: [
+ { label: "Web Design", href: "#services" },
+ { label: "App Development", href: "#services" },
+ { label: "Digital Marketing", href: "#services" },
+ { label: "Branding", href: "#services" },
],
},
{
- title: "Company",
- items: [
- { label: "About Us", href: "/about" },
- { label: "Portfolio", href: "/portfolio" },
- { label: "Team", href: "/team" },
+ title: "Company", items: [
+ { label: "About Us", href: "#about" },
+ { label: "Portfolio", href: "#portfolio" },
+ { label: "Team", href: "#team" },
{ label: "Careers", href: "#careers" },
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
- { label: "Contact", href: "/contact" },
+ { label: "Contact", href: "#contact" },
],
},
];
@@ -57,7 +56,7 @@ export default function HomePage() {
borderRadius="rounded"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
- background="fluid"
+ background="circleGradient"
cardStyle="outline"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
@@ -70,7 +69,7 @@ export default function HomePage() {
name: item.name,
id: item.id,
}))}
- button={{ text: "Get Started", href: "/contact" }}
+ button={{ text: "Get Started", href: "#contact" }}
animateOnLoad={true}
/>
@@ -79,7 +78,7 @@ export default function HomePage() {