Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ae6c6eaff9 |
@@ -4,14 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||||
import { Cpu, Zap, Palette, BookOpen } from "lucide-react";
|
import { Cpu, Zap, Palette, BookOpen } from "lucide-react";
|
||||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
|
||||||
|
|
||||||
export default function PortfolioPage() {
|
export default function PortfolioPage() {
|
||||||
return (
|
return (
|
||||||
@@ -32,7 +31,6 @@ export default function PortfolioPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Work", id: "hero" },
|
{ name: "Work", id: "hero" },
|
||||||
{ name: "Experience", id: "experience" },
|
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Services", id: "features" },
|
{ name: "Services", id: "features" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
@@ -57,20 +55,6 @@ export default function PortfolioPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="experience" data-section="experience">
|
|
||||||
<MetricCardFourteen
|
|
||||||
title="Professional Journey"
|
|
||||||
tag="Timeline"
|
|
||||||
metrics={[
|
|
||||||
{ id: "2024", value: "Senior Designer", description: "Leading UX initiatives for enterprise SaaS products." },
|
|
||||||
{ id: "2021", value: "UX Lead", description: "Managed design teams and scaled component libraries." },
|
|
||||||
{ id: "2018", value: "Front-end Dev", description: "Building accessible interfaces for global clients." }
|
|
||||||
]}
|
|
||||||
metricsAnimation="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TextSplitAbout
|
<TextSplitAbout
|
||||||
title="My Philosophy"
|
title="My Philosophy"
|
||||||
@@ -82,7 +66,7 @@ export default function PortfolioPage() {
|
|||||||
<div id="problems" data-section="problems">
|
<div id="problems" data-section="problems">
|
||||||
<MetricCardThree
|
<MetricCardThree
|
||||||
title="What I Bring"
|
title="What I Bring"
|
||||||
description="Core competencies for digital excellence."
|
description="I combine technical expertise with creative vision to deliver impactful digital products."
|
||||||
metrics={[
|
metrics={[
|
||||||
{ id: "1", icon: Cpu, title: "Web Development", value: "Modern" },
|
{ id: "1", icon: Cpu, title: "Web Development", value: "Modern" },
|
||||||
{ id: "2", icon: Zap, title: "Performance Optimization", value: "Speed" },
|
{ id: "2", icon: Zap, title: "Performance Optimization", value: "Speed" },
|
||||||
@@ -115,30 +99,26 @@ export default function PortfolioPage() {
|
|||||||
rating={5}
|
rating={5}
|
||||||
ratingAnimation="slide-up"
|
ratingAnimation="slide-up"
|
||||||
avatarsAnimation="opacity"
|
avatarsAnimation="opacity"
|
||||||
avatars={[{ src: "https://img.b2bpic.net/free-photo/happy-woman_23-2148814057.jpg", alt: "Client" }]
|
avatars={[{ src: "https://img.b2bpic.net/free-photo/happy-woman_23-2148814057.jpg", alt: "Client" }]}
|
||||||
}
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Get In Touch"
|
tag="Let's Connect"
|
||||||
title="Portfolio Inquiries"
|
title="Ready to Start a Project?"
|
||||||
description="Interested in collaborating or have a question about my work? I'm always open to discussing new projects and creative opportunities."
|
description="Let's turn your idea into a digital reality."
|
||||||
buttons={[{ text: "Send an Email", href: "mailto:hello@portfolio.com" }, { text: "LinkedIn", href: "https://linkedin.com/in/me" }]}
|
buttons={[{ text: "Contact Me", href: "mailto:hello@example.com" }]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterLogoEmphasis
|
||||||
logoText="Portfolio"
|
logoText="Portfolio"
|
||||||
columns={[
|
columns={[{ items: [{ label: "Home" }, { label: "Projects" }, { label: "Contact" }] }]}
|
||||||
{ title: "Navigation", items: [{ label: "Home", href: "#" }, { label: "Projects", href: "#features" }, { label: "Contact", href: "#contact" }] },
|
|
||||||
{ title: "Connect", items: [{ label: "LinkedIn", href: "https://linkedin.com" }, { label: "Email", href: "mailto:hello@portfolio.com" }] }
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user