346 lines
13 KiB
TypeScript
346 lines
13 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import HeroLogo from "@/components/sections/hero/HeroLogo";
|
|
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
|
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
|
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
|
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
|
import {
|
|
MessageCircle,
|
|
User,
|
|
Users,
|
|
Heart,
|
|
Share2,
|
|
Shield,
|
|
MessageSquare,
|
|
Calendar,
|
|
Image as ImageIcon,
|
|
} from "lucide-react";
|
|
|
|
export default function MessagingPage() {
|
|
const navItems = [
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Features", id: "#features" },
|
|
{ name: "Community", id: "#community" },
|
|
{ name: "Contact", id: "#contact" },
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="mediumLargeSizeLargeTitles"
|
|
background="grid"
|
|
cardStyle="solid"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="bold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Family Square"
|
|
navItems={navItems}
|
|
button={{
|
|
text: "Get Started",
|
|
href: "/auth/login",
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroLogo
|
|
logoText="Family Square"
|
|
description="Connect, organize, and share moments with your family. A modern platform built for families to strengthen bonds, plan events, and create lasting memories together."
|
|
buttons={[
|
|
{ text: "Join the Community", href: "/auth/register" },
|
|
{ text: "Discover Features", href: "#features" },
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/people-spending-time-together-experiencing-time-expansion_23-2151338301.jpg?_wi=2"
|
|
imageAlt="Happy diverse families connecting together"
|
|
showDimOverlay={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureBento
|
|
title="Powerful Features for Family Connection"
|
|
description="Everything you need to bring your family closer together. From messaging to event planning, Family Square has you covered."
|
|
tag="Features"
|
|
features={[
|
|
{
|
|
title: "Instant Messaging",
|
|
description: "Send messages instantly to family members with read receipts and notifications.",
|
|
bentoComponent: "chat",
|
|
aiIcon: MessageCircle,
|
|
userIcon: User,
|
|
exchanges: [
|
|
{
|
|
userMessage: "Did you see the photos from the picnic?",
|
|
aiResponse: "Yes! They were amazing. Can't wait for the next one!",
|
|
},
|
|
{
|
|
userMessage: "Family dinner this Sunday?",
|
|
aiResponse: "Absolutely! I'll bring dessert.",
|
|
},
|
|
],
|
|
placeholder: "Type a message...",
|
|
},
|
|
{
|
|
title: "Event Planning",
|
|
description: "Create, organize, and manage family events with calendar integration.",
|
|
bentoComponent: "timeline",
|
|
heading: "Upcoming Family Events",
|
|
subheading: "Stay organized and never miss an event",
|
|
items: [
|
|
{
|
|
label: "Birthday Party",
|
|
detail: "Saturday at 6:00 PM",
|
|
},
|
|
{
|
|
label: "Family Dinner",
|
|
detail: "Sunday at 5:00 PM",
|
|
},
|
|
{
|
|
label: "Holiday Celebration",
|
|
detail: "December 25th",
|
|
},
|
|
],
|
|
completedLabel: "Completed",
|
|
},
|
|
{
|
|
title: "Photo Sharing",
|
|
description: "Share and store family photos securely in one place.",
|
|
bentoComponent: "media-stack",
|
|
items: [
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/people-looking-picture-album_23-2149548452.jpg?_wi=3",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-fun-together_23-2149306382.jpg?_wi=3",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-person-celebrating-work-close-up_23-2149305062.jpg?_wi=3",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Family Groups",
|
|
description: "Organize family members into groups and manage permissions.",
|
|
bentoComponent: "orbiting-icons",
|
|
centerIcon: Users,
|
|
items: [
|
|
{
|
|
icon: User,
|
|
ring: 1,
|
|
},
|
|
{
|
|
icon: Heart,
|
|
ring: 2,
|
|
},
|
|
{
|
|
icon: Share2,
|
|
ring: 1,
|
|
},
|
|
{
|
|
icon: Shield,
|
|
ring: 2,
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
carouselMode="buttons"
|
|
/>
|
|
</div>
|
|
|
|
<div id="community" data-section="community">
|
|
<MetricCardThree
|
|
title="Growing Community"
|
|
description="Join thousands of families already using Family Square to stay connected."
|
|
tag="Community"
|
|
metrics={[
|
|
{
|
|
id: "1",
|
|
icon: Users,
|
|
title: "Active Families",
|
|
value: "50,000+",
|
|
},
|
|
{
|
|
id: "2",
|
|
icon: MessageSquare,
|
|
title: "Messages Sent",
|
|
value: "2.5M+",
|
|
},
|
|
{
|
|
id: "3",
|
|
icon: Calendar,
|
|
title: "Events Created",
|
|
value: "100K+",
|
|
},
|
|
{
|
|
id: "4",
|
|
icon: ImageIcon,
|
|
title: "Photos Shared",
|
|
value: "10M+",
|
|
},
|
|
]}
|
|
textboxLayout="default"
|
|
animationType="scale-rotate"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardSix
|
|
title="Loved by Families"
|
|
description="See what families are saying about their experience with Family Square."
|
|
tag="Testimonials"
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: "1",
|
|
name: "Sarah Johnson",
|
|
handle: "@sarahj_family",
|
|
testimonial: "Family Square has brought us closer together. We can finally share moments in real-time and everyone feels included in family events.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/indoor-portrait-gorgeous-young-caucasian-female-student-with-perfect-healthy-skin_273609-9035.jpg?_wi=5",
|
|
},
|
|
{
|
|
id: "2",
|
|
name: "Michael Chen",
|
|
handle: "@mikechen_dad",
|
|
testimonial: "The event planning feature is a game-changer. No more confusion about family gatherings. Everything is organized and everyone knows what's happening.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg?_wi=5",
|
|
},
|
|
{
|
|
id: "3",
|
|
name: "Emily Rodriguez",
|
|
handle: "@emilyrodriguez",
|
|
testimonial: "As a busy mom, I love how easy it is to keep track of family updates and share photos. My parents love seeing the latest pictures of the grandkids!",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-young-european-female-turquoise-blouse_181624-55855.jpg?_wi=3",
|
|
},
|
|
{
|
|
id: "4",
|
|
name: "David Kim",
|
|
handle: "@davidkim_family",
|
|
testimonial: "Best decision we made for our family. It's like having a private social network just for us. Love the simplicity and security.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-handsome-cute-caucasian-man-park_181624-56266.jpg?_wi=3",
|
|
},
|
|
{
|
|
id: "5",
|
|
name: "Jennifer Martinez",
|
|
handle: "@jen_martinez",
|
|
testimonial: "My kids actually use this to stay connected with their cousins. It's engaging, safe, and brings the whole family together.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/indoor-portrait-gorgeous-young-caucasian-female-student-with-perfect-healthy-skin_273609-9035.jpg?_wi=6",
|
|
},
|
|
{
|
|
id: "6",
|
|
name: "Robert Thompson",
|
|
handle: "@bobthompson",
|
|
testimonial: "From planning reunions to sharing daily moments, Family Square handles it all. Highly recommend to every family.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg?_wi=6",
|
|
},
|
|
]}
|
|
speed={40}
|
|
/>
|
|
</div>
|
|
|
|
<div id="social-proof" data-section="social-proof">
|
|
<SocialProofOne
|
|
title="Trusted by Leading Organizations"
|
|
description="Family Square is partnered with organizations dedicated to family wellness and connection."
|
|
tag="Partners"
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
names={[
|
|
"Apple",
|
|
"Microsoft",
|
|
"Google",
|
|
"Amazon",
|
|
"Meta",
|
|
"Slack",
|
|
"Notion",
|
|
"Figma",
|
|
]}
|
|
logos={[
|
|
"http://img.b2bpic.net/free-vector/gradient-pp-logo-template_23-2151182584.jpg",
|
|
"http://img.b2bpic.net/free-vector/database-blue-round-demonstrating-storage-station-hardware-racks-server-room_1284-28392.jpg",
|
|
"http://img.b2bpic.net/free-vector/flat-design-g-letter-logos-set_23-2148938005.jpg",
|
|
"http://img.b2bpic.net/free-vector/abstract-logo-made-with-rounded-squares_1043-52.jpg",
|
|
"http://img.b2bpic.net/free-vector/gradient-social-media-logo-pack_23-2148068588.jpg",
|
|
"http://img.b2bpic.net/free-vector/health-logo-design_1051-901.jpg",
|
|
"http://img.b2bpic.net/free-vector/minimal-logo-collection-with-pastel-colors_23-2148360510.jpg",
|
|
"http://img.b2bpic.net/free-vector/job-interview-avatar-elements-composition-set_98292-6714.jpg",
|
|
]}
|
|
speed={40}
|
|
showCard={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCenter
|
|
tag="Stay Connected"
|
|
title="Ready to Bring Your Family Closer?"
|
|
description="Join Family Square today and start sharing, organizing, and creating memories with your loved ones. Be the first to know about new features and updates."
|
|
background={{
|
|
variant: "radial-gradient",
|
|
}}
|
|
useInvertedBackground={false}
|
|
inputPlaceholder="Enter your family email"
|
|
buttonText="Get Started Free"
|
|
termsText="By signing up, you agree to our Terms of Service and Privacy Policy."
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterMedia
|
|
imageSrc="http://img.b2bpic.net/free-photo/family-with-cute-kids-autumn-park_1157-22355.jpg?_wi=5"
|
|
imageAlt="Happy families celebrating together"
|
|
logoText="Family Square"
|
|
copyrightText="© 2025 Family Square. Bringing families closer together."
|
|
columns={[
|
|
{
|
|
title: "Product",
|
|
items: [
|
|
{ label: "Features", href: "#features" },
|
|
{ label: "Pricing", href: "/pricing" },
|
|
{ label: "Security", href: "#" },
|
|
{ label: "Status", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Company",
|
|
items: [
|
|
{ label: "About", href: "/about" },
|
|
{ label: "Blog", href: "/blog" },
|
|
{ label: "Careers", href: "#" },
|
|
{ label: "Contact", href: "#contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal",
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Cookie Policy", href: "#" },
|
|
{ label: "GDPR", href: "#" },
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |