+
+
+ console.log("Contact form submitted with email:", email)}
+ />
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index f67aadb..dd60965 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,6 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Code, Users, Globe, MessageCircle, Sparkles } from "lucide-react";
export default function PersonalGridTemplatePage() {
@@ -22,24 +24,24 @@ export default function PersonalGridTemplatePage() {
const linkCards = [
{
icon: Code,
- title: "Work with my agency",
- description: "Work with my agency to build your MVP",
- button: { text: "Get started", href: "#" },
+ title: "Work with my agency", description: "Work with my agency to build your MVP", button: { text: "Get started", href: "#" },
},
{
icon: Sparkles,
- title: "20% off your Webild plan",
- description: "Use my promo code to get Webild credits",
- button: { text: "Get credits", href: "#" },
+ title: "20% off your Webild plan", description: "Use my promo code to get Webild credits", button: { text: "Get credits", href: "#" },
},
{
icon: Users,
- title: "Join my community",
- description: "Join the AI Founders Club",
- button: { text: "Sign up", href: "#" },
+ title: "Join my community", description: "Join the AI Founders Club", button: { text: "Sign up", href: "#" },
},
];
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Reviews", id: "#reviews" },
+ { name: "Contact", id: "/contact" },
+ ];
+
return (