Merge version_2 into main #5
@@ -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>
|
||||
);
|
||||
|
||||
@@ -4,41 +4,44 @@ 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 PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||
|
||||
export default function PricingPage() {
|
||||
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">
|
||||
<PricingCardNine
|
||||
<PricingCardThree
|
||||
title="Transparent Pricing"
|
||||
description="Simple plans for every stage of your business growth."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "starter", title: "Starter", price: "$999", period: "one-time", features: ["Core UI Design", "Basic Development", "Responsive Layout"], button: { text: "Get Started" } },
|
||||
{ id: "pro", title: "Professional", price: "$2499", period: "one-time", features: ["Everything in Starter", "Advanced Interactions", "SEO Setup", "Brand Assets"], button: { text: "Get Started" } },
|
||||
{ id: "enterprise", title: "Enterprise", price: "$4999", period: "one-time", features: ["Full System Architecture", "Custom CMS", "Ongoing Support", "Performance Optimization"], button: { text: "Get Started" } }
|
||||
{ id: "starter", name: "Starter", price: "$999", features: ["Core UI Design", "Basic Development", "Responsive Layout"], buttons: [{ text: "Get Started" }] },
|
||||
{ id: "pro", name: "Professional", price: "$2499", features: ["Everything in Starter", "Advanced Interactions", "SEO Setup", "Brand Assets"], buttons: [{ text: "Get Started" }] },
|
||||
{ id: "enterprise", name: "Enterprise", price: "$4999", features: ["Full System Architecture", "Custom CMS", "Ongoing Support", "Performance Optimization"], buttons: [{ text: "Get Started" }] }
|
||||
]}
|
||||
/>
|
||||
</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>
|
||||
);
|
||||
|
||||
@@ -9,19 +9,19 @@ import { Palette, Code, Award, Layers, Search, Zap } from "lucide-react";
|
||||
|
||||
export default function ServicesPage() {
|
||||
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">
|
||||
<FeatureCardTwentySix
|
||||
textboxLayout="split"
|
||||
@@ -38,11 +38,13 @@ export default function ServicesPage() {
|
||||
]}
|
||||
/>
|
||||
</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