diff --git a/src/app/page.tsx b/src/app/page.tsx
index 957b8b7..cb4e95f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -4,6 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import AboutMetric from '@/components/sections/about/AboutMetric';
import ContactCTA from '@/components/sections/contact/ContactCTA';
+import ContactForm from '@/components/form/ContactForm';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
@@ -29,14 +30,11 @@ export default function LandingPage() {
@@ -44,14 +42,10 @@ export default function LandingPage() {
@@ -62,15 +56,9 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Why You're Amazing"
metrics={[
- {
- icon: Heart,
- label: "Years of Joy", value: "Forever"},
- {
- icon: Smile,
- label: "Smiles Caused", value: "Millions"},
- {
- icon: Star,
- label: "Your Magic", value: "Infinite"},
+ { icon: Heart, label: "Years of Joy", value: "Forever" },
+ { icon: Smile, label: "Smiles Caused", value: "Millions" },
+ { icon: Star, label: "Your Magic", value: "Infinite" },
]}
metricsAnimation="slide-up"
/>
@@ -84,12 +72,9 @@ export default function LandingPage() {
features={[
{
title: "The Beginning", description: "The day everything changed for the better.", bentoComponent: "media-stack", items: [
- {
- imageSrc: "http://img.b2bpic.net/free-photo/coffee-cafe-calm-chill-beverage-resting-enjoy-concept_53876-42609.jpg", imageAlt: "Our early days"},
- {
- imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-hipster-couple-love-walking-by-river-wild-nature-winter-vacation_285396-2037.jpg", imageAlt: "Adventure 1"},
- {
- imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-women-their-graduation-night_23-2149106120.jpg", imageAlt: "Adventure 2"},
+ { imageSrc: "http://img.b2bpic.net/free-photo/coffee-cafe-calm-chill-beverage-resting-enjoy-concept_53876-42609.jpg", imageAlt: "Our early days" },
+ { imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-hipster-couple-love-walking-by-river-wild-nature-winter-vacation_285396-2037.jpg", imageAlt: "Adventure 1" },
+ { imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-women-their-graduation-night_23-2149106120.jpg", imageAlt: "Adventure 2" },
],
},
{
@@ -104,20 +89,26 @@ export default function LandingPage() {
/>
+
+
+
+
@@ -145,18 +132,14 @@ export default function LandingPage() {
columns={[
{
title: "Celebrate", items: [
- {
- label: "Surprise", href: "#"},
- {
- label: "Memories", href: "#"},
+ { label: "Surprise", href: "#" },
+ { label: "Memories", href: "#" },
],
},
{
title: "Links", items: [
- {
- label: "Contact", href: "#"},
- {
- label: "Privacy", href: "#"},
+ { label: "Contact", href: "#" },
+ { label: "Privacy", href: "#" },
],
},
]}