diff --git a/src/app/page.tsx b/src/app/page.tsx
index 392d383..957b8b7 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -4,7 +4,6 @@ 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';
@@ -30,11 +29,14 @@ export default function LandingPage() {
@@ -42,10 +44,14 @@ export default function LandingPage() {
@@ -56,9 +62,15 @@ 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"
/>
@@ -72,9 +84,12 @@ 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"},
],
},
{
@@ -89,27 +104,20 @@ export default function LandingPage() {
/>
-
-
-
-
@@ -133,14 +145,18 @@ 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: "#"},
],
},
]}