Update src/app/portfolio/page.tsx
This commit is contained in:
@@ -4,40 +4,43 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { BlogCardOne } from '@/components/sections/blog/BlogCardOne';
|
||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||
|
||||
export default function PortfolioPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Portfolio", id: "/portfolio" },
|
||||
{ name: "Testimonials", id: "/testimonials" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="FreelanceFlow"
|
||||
/>
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-20">
|
||||
<BlogCardOne
|
||||
<BlogCardThree
|
||||
title="Portfolio & Case Studies"
|
||||
description="Showcasing impactful projects and client success stories."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
blogs={[
|
||||
{ id: "1", category: "Design", title: "E-commerce Redesign", excerpt: "Increased conversion by 40% through intuitive UI changes.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BZHUtJmNFxNxyKqx53sXzvtw1r/a-professional-minimalist-desk-setup-for-1774689729470-66489b79.png?_wi=1", authorName: "Admin", authorAvatar: "", date: "2024-05-12" },
|
||||
{ id: "2", category: "Web App", title: "Fintech Dashboard", excerpt: "Complex data visualization made simple and beautiful.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BZHUtJmNFxNxyKqx53sXzvtw1r/a-modern-abstract-digital-interface-over-1774689735040-df6a2a23.png", authorName: "Admin", authorAvatar: "", date: "2024-06-01" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterLogoReveal
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="FreelanceFlow"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user