Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 366ce8363d | |||
| a9404b1b78 | |||
| f84c544b1d |
@@ -1,8 +1,9 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||||
import { Sparkles, Linkedin, Twitter, Instagram } from "lucide-react";
|
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||||
|
import { PawPrint, Heart, ShoppingBag } from "lucide-react";
|
||||||
|
|
||||||
export default function PersonalLinkInBioPage() {
|
export default function PersonalLinkInBioPage() {
|
||||||
return (
|
return (
|
||||||
@@ -18,18 +19,35 @@ export default function PersonalLinkInBioPage() {
|
|||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<HeroCentered
|
<div id="hero">
|
||||||
title="Hi, I'm Alex"
|
<HeroSplit
|
||||||
description="Building the future of AI-driven creative tools. Check out my latest projects and socials below."
|
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" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
avatars={[{ src: "https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?w=200&h=200&fit=crop", alt: "Alex" }]}
|
imageSrc="https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?w=800&h=800&fit=crop"
|
||||||
|
imageAlt="Cute cat and dog"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Check my portfolio", href: "#" },
|
{ text: "Shop Favorites", href: "#products" },
|
||||||
{ text: "Let's talk", href: "#" }
|
{ text: "Read Our Guides", href: "#guides" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
className="py-20"
|
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>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #ffffff;
|
||||||
--card: #1a1a1a;
|
--card: #f9f9f9;
|
||||||
--foreground: #ffffffe6;
|
--foreground: #000612e6;
|
||||||
--primary-cta: #e6e6e6;
|
--primary-cta: #15479c;
|
||||||
--primary-cta-text: #0a0a0a;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #1a1a1a;
|
--secondary-cta: #f9f9f9;
|
||||||
--secondary-cta-text: #ffffffe6;
|
--secondary-cta-text: #000612e6;
|
||||||
--accent: #737373;
|
--accent: #e2e2e2;
|
||||||
--background-accent: #737373;
|
--background-accent: #c4c4c4;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user