Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0bdfec24c7 |
@@ -1,65 +1,52 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
|
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
|
||||||
import { Code, Users, Globe, MessageCircle, Sparkles } from "lucide-react";
|
import { Code, Globe, Sparkles } from "lucide-react";
|
||||||
|
|
||||||
export default function PersonalGridTemplatePage() {
|
export default function PersonalPortfolioPage() {
|
||||||
const titleSegments = [
|
const testimonials = [
|
||||||
{ type: "text" as const, content: "I help founders" },
|
{
|
||||||
{ type: "image" as const, src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/personal-grid/grid1.webp", alt: "Damien Ghader" },
|
name: "Alex River", handle: "@ariver", testimonial: "The designs were absolutely world-class and perfectly aligned with my brand vision.", rating: 5,
|
||||||
{ type: "text" as const, content: "build products" },
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-7l3iwi2m.png"},
|
||||||
{ type: "image" as const, src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/personal-grid/grid2.webp", alt: "" },
|
{
|
||||||
{ type: "text" as const, content: "with AI" },
|
name: "Sam Chen", handle: "@schen", testimonial: "Incredible attention to detail. Really pushed my project to the next level.", rating: 5,
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-xx4f032f.png"},
|
||||||
];
|
];
|
||||||
|
|
||||||
const socialLinks = [
|
const avatars = [
|
||||||
{ icon: Globe, label: "damienghader", href: "https://twitter.com" },
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-7l3iwi2m.png", alt: "User" },
|
||||||
{ icon: MessageCircle, label: "damienghader", href: "https://instagram.com" },
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-xx4f032f.png", alt: "User" },
|
||||||
{ icon: Sparkles, label: "damienghader", href: "https://linkedin.com" },
|
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-vub6tpkj.png", alt: "User" },
|
||||||
];
|
|
||||||
|
|
||||||
const linkCards = [
|
|
||||||
{
|
|
||||||
icon: Code,
|
|
||||||
title: "Work with my agency",
|
|
||||||
description: "Work with my agency to build your MVP",
|
|
||||||
button: { text: "Get started", href: "#" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: Sparkles,
|
|
||||||
title: "20% off your Webild plan",
|
|
||||||
description: "Use my promo code to get Webild credits",
|
|
||||||
button: { text: "Get credits", href: "#" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: Users,
|
|
||||||
title: "Join my community",
|
|
||||||
description: "Join the AI Founders Club",
|
|
||||||
button: { text: "Sign up", href: "#" },
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="rounded"
|
borderRadius="soft"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="none"
|
background="noise"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="glass-depth"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<HeroPersonalLinks
|
<div id="hero">
|
||||||
background={{ variant: "downward-rays-animated-grid" }}
|
<HeroOverlayTestimonial
|
||||||
title="I help people design software with AI"
|
title="Building digital experiences with passion"
|
||||||
titleSegments={titleSegments}
|
description="I specialize in creating clean, user-centric software that makes an impact. Let's build something great together."
|
||||||
socialLinks={socialLinks}
|
testimonials={testimonials}
|
||||||
linkCards={linkCards}
|
avatars={avatars}
|
||||||
/>
|
avatarText="Trusted by industry leaders"
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-vub6tpkj.png"
|
||||||
|
buttons={[
|
||||||
|
{ text: "View Portfolio", href: "#projects" },
|
||||||
|
{ text: "Contact Me", href: "#contact" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user