From 1534e3c7a36e6d9c6aa89fdfda292b2e22041c79 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 23:50:11 +0000 Subject: [PATCH 1/2] Add src/app/freelancer/[id]/page.tsx --- src/app/freelancer/[id]/page.tsx | 60 ++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 src/app/freelancer/[id]/page.tsx diff --git a/src/app/freelancer/[id]/page.tsx b/src/app/freelancer/[id]/page.tsx new file mode 100644 index 0000000..a5593c5 --- /dev/null +++ b/src/app/freelancer/[id]/page.tsx @@ -0,0 +1,60 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import { Star, Briefcase, Award, Clock, MessageSquare } from "lucide-react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function FreelancerProfile() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From 1191f2b535c93edc5409240291664437802f932d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 19 Apr 2026 23:50:11 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cc81758..8322a01 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,6 @@ import { TrendingUp, CreditCard, MessageSquare, Bell, HelpCircle, FileText } fro import ContactText from '@/components/sections/contact/ContactText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import HeroLogo from '@/components/sections/hero/HeroLogo'; -import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; @@ -55,7 +54,7 @@ export default function LandingPage() { />
- +
-- 2.49.1