From 9772e0322e0d5d907950d5cf42b3ba7083e5a5ab Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:58:03 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9272ab6..2a92c5a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,38 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - export const metadata: Metadata = { - title: "UEFN Elite | Fortnite Map Scaling Coaching & Certification", description: "Master professional Fortnite UEFN map scaling with championship-level coaching. Learn precision design, asset placement, and optimization from top esports coaches.", keywords: "Fortnite coaching, UEFN map scaling, Creative map design, esports coaching, game level design, professional maps", robots: { + title: "Fortnite UEFN Map Scaling Coach | Player Funnel System", description: "I'll help you install my player funnel system that will grow your map so you can stop relying on discovery. Professional UEFN map scaling coaching for creators stuck at 50 CCU.", keywords: "Fortnite UEFN, map scaling, player funnel, CCU growth, creative coaching, discovery alternative", robots: { index: true, follow: true, }, openGraph: { - title: "UEFN Elite | Master Map Scaling Like a Pro", description: "Transform your Fortnite Creative maps with professional scaling techniques. Learn from championship-level designers.", type: "website", siteName: "UEFN Elite", images: [ + title: "Fortnite UEFN Map Scaling Coach | Player Funnel System", description: "Grow your map without relying on discovery. Install my proven player funnel system.", type: "website", siteName: "UEFN Map Scaling Coach", images: [ { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXOSVdMFDlKvbI7KlX0uGyesP5/a-professional-fortnite-uefn-map-editor--1772735703015-3e6f7a2b.png", alt: "Fortnite Map Scaling Dashboard"}, + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXOSVdMFDlKvbI7KlX0uGyesP5/a-professional-fortnite-uefn-map-editor--1772735703015-3e6f7a2b.png", alt: "Fortnite UEFN Map Editor"}, ], }, twitter: { - card: "summary_large_image", title: "UEFN Elite | Fortnite Map Scaling Coaching", description: "Learn professional map design and scaling from championship coaches.", images: [ + card: "summary_large_image", title: "Fortnite UEFN Map Scaling Coach", description: "Grow your map with my player funnel system. Stop relying on discovery.", images: [ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXOSVdMFDlKvbI7KlX0uGyesP5/a-professional-fortnite-uefn-map-editor--1772735703015-3e6f7a2b.png"], }, }; @@ -45,9 +38,7 @@ export default function RootLayout({ return ( - + {children} From 69923f90e1cb56e9483fe84f7beb340bebb9adaa Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:58:03 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 184 ++++++++++++++++++++++++----------------------- 1 file changed, 93 insertions(+), 91 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 304f6b5..df9f637 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { Award, FileText, Grid3x3, Layout, Settings, Zap, Trophy, Video, CircleDollarSign, ArrowLeftRight, Send } from "lucide-react"; +import { Zap, Trophy, TrendingUp, Users, Sparkles } from "lucide-react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; @@ -15,94 +15,96 @@ import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; export default function LandingPage() { return (
-
+
@@ -110,23 +112,23 @@ export default function LandingPage() {
From fddff5dbb9baba07dc021ed15f264aa80a63a1eb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:58:04 +0000 Subject: [PATCH 3/3] Update src/app/styles/base.css --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 38cd8a1..c480bac 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-lato), sans-serif; + font-family: var(--font-dm-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-lato), sans-serif; + font-family: var(--font-dm-sans), sans-serif; }