From a27b1a3732c8dedcf18bdab971629ee6b8661ed6 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:09:28 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8ac3674..8eea4c7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -97,7 +97,7 @@ export default function AboutPage() { description: "Our instructors bring years of professional experience in sewing, tailoring, and embroidery to every tutorial.", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-woman-working-with-sewing-pattern_1163-2050.jpg", + "http://img.b2bpic.net/free-photo/portrait-woman-working-with-sewing-pattern_1163-2050.jpg?_wi=2", imageAlt: "Expert Teaching", button: { text: "Meet Instructors", -- 2.49.1 From a9b3c8865a7e9bcf4752eb3698343db14ec82e15 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 20:09:29 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 44 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..20ecdc5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import { Inter } 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"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "OkNeppo - Learn Sewing, Tailoring & Embroidery Online", + description: "Master sewing, tailoring, and machine skills with OkNeppo's expert tutorials, training programs, and YouTube guides designed for beginners. Start your sewing journey today!", + keywords: "sewing tutorials, tailoring lessons, embroidery guide, sewing machine basics, learn stitching online, beginner sewing, tailoring courses", + metadataBase: new URL("https://okneppo.com"), + alternates: { + canonical: "https://okneppo.com", + }, + openGraph: { + title: "OkNeppo - Learn Sewing & Tailoring the Easy Way", + description: "Expert-led sewing tutorials, tailoring training, and embroidery guides for beginners. Subscribe on YouTube and WhatsApp for daily tips.", + url: "https://okneppo.com", + siteName: "OkNeppo", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-woman-working-with-sewing-pattern_1163-2050.jpg", + alt: "OkNeppo Sewing Education", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "OkNeppo - Learn Sewing & Tailoring Online", + description: "Master sewing skills with expert tutorials and training programs on OkNeppo.", + images: ["http://img.b2bpic.net/free-photo/portrait-woman-working-with-sewing-pattern_1163-2050.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}