Update src/app/page.tsx

This commit is contained in:
2026-03-30 12:55:50 +00:00
parent f84c544b1d
commit a9404b1b78

View File

@@ -1,8 +1,9 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroCentered from "@/components/sections/hero/HeroCentered";
import { Sparkles, Linkedin, Twitter, Instagram } from "lucide-react";
import HeroSplit from "@/components/sections/hero/HeroSplit";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import { PawPrint, Heart, ShoppingBag } from "lucide-react";
export default function PersonalLinkInBioPage() {
return (
@@ -18,18 +19,35 @@ export default function PersonalLinkInBioPage() {
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<HeroCentered
title="Hi, I'm Alex"
description="Building the future of AI-driven creative tools. Check out my latest projects and socials below."
background={{ variant: "sparkles-gradient" }}
avatars={[{ src: "https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?w=200&h=200&fit=crop", alt: "Alex" }]}
buttons={[
{ text: "Check my portfolio", href: "#" },
{ text: "Let's talk", href: "#" }
]}
buttonAnimation="slide-up"
className="py-20"
/>
<div id="hero">
<HeroSplit
title="Paws & Whiskers Collective"
description="Curated essentials, health tips, and community favorites for the happiest dogs and cats. Explore our top picks for your furry best friends."
background={{ variant: "sparkles-gradient" }}
imageSrc="https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?w=800&h=800&fit=crop"
imageAlt="Cute cat and dog"
buttons={[
{ text: "Shop Favorites", href: "#products" },
{ text: "Read Our Guides", href: "#guides" }
]}
buttonAnimation="slide-up"
className="py-20"
/>
</div>
<div id="products">
<FeatureCardEight
title="Essential Collections"
description="From organic treats to durable enrichment toys, we've hand-picked everything your pet needs to thrive."
textboxLayout="default"
useInvertedBackground={false}
features={[
{ id: 1, title: "Healthy Treats", description: "Nutrient-rich snacks for training and rewards.", imageSrc: "https://images.unsplash.com/photo-1585559895316-29177119f074?w=400&h=400&fit=crop" },
{ id: 2, title: "Enrichment Toys", description: "Mental stimulation to keep minds sharp.", imageSrc: "https://images.unsplash.com/photo-1544568100-847a9b858f65?w=400&h=400&fit=crop" },
{ id: 3, title: "Cozy Bedding", description: "Supreme comfort for dream-filled naps.", imageSrc: "https://images.unsplash.com/photo-1592194996308-7b43878e84a6?w=400&h=400&fit=crop" }
]}
/>
</div>
</ThemeProvider>
);
}