diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3c5b42c..03f71be 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -48,7 +48,7 @@ export default function AboutPage() { tag="The Problem" tagIcon={AlertCircle} tagAnimation="slide-up" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnLKFcN93h8VuUNAaNCqiJvvtK/an-illustration-showing-the-chaos-of-tra-1773223391947-889c1381.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnLKFcN93h8VuUNAaNCqiJvvtK/an-illustration-showing-the-chaos-of-tra-1773223391947-889c1381.png?_wi=3" imageAlt="Freelance Platform Chaos" useInvertedBackground={false} /> diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index a5c7f24..58e93b8 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -58,7 +58,7 @@ export default function DashboardPage() { tag="Your Workspace" tagIcon={BarChart3} tagAnimation="slide-up" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnLKFcN93h8VuUNAaNCqiJvvtK/a-comprehensive-dashboard-overview-showi-1773223395492-bcf82697.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnLKFcN93h8VuUNAaNCqiJvvtK/a-comprehensive-dashboard-overview-showi-1773223395492-bcf82697.png?_wi=2" imageAlt="Dashboard Overview" useInvertedBackground={false} buttons={[ diff --git a/src/app/invite/page.tsx b/src/app/invite/page.tsx index dce4d88..13a3cc6 100644 --- a/src/app/invite/page.tsx +++ b/src/app/invite/page.tsx @@ -54,7 +54,7 @@ export default function InvitePage() { variant: "sparkles-gradient", }} useInvertedBackground={false} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnLKFcN93h8VuUNAaNCqiJvvtK/an-inspiring-illustration-showing-the-tr-1773223393079-fb286fc8.png" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnLKFcN93h8VuUNAaNCqiJvvtK/an-inspiring-illustration-showing-the-tr-1773223393079-fb286fc8.png?_wi=4" imageAlt="Join NEXORA" mediaAnimation="slide-up" inputPlaceholder="your@email.com" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..16cfa3b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "NEXORA - Premium Talent Exchange | Verified Freelancers", + description: "NEXORA is an invite-only professional work platform connecting clients with verified freelancers through task-based matching. Execution without chaos. Join the future of work.", + keywords: "freelance marketplace, verified freelancers, task-based work, professional services, talent matching, curated community", + metadataBase: new URL("https://nexora.com"), + alternates: { + canonical: "https://nexora.com", + }, + openGraph: { + title: "NEXORA - Execution Without Chaos", + description: "Skip endless browsing. Post a task. Get matched with verified talent. Execute with confidence.", + url: "https://nexora.com", + siteName: "NEXORA", + type: "website", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnLKFcN93h8VuUNAaNCqiJvvtK/a-sleek-saas-dashboard-interface-showing-1773223391433-67a0a831.png", + alt: "NEXORA Platform Interface", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "NEXORA - Premium Talent Exchange", + description: "Verified professionals. Curated ecosystem. Reliable execution.", + images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnLKFcN93h8VuUNAaNCqiJvvtK/a-sleek-saas-dashboard-interface-showing-1773223391433-67a0a831.png"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}