diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx new file mode 100644 index 0000000..4b8d00b --- /dev/null +++ b/src/app/blog/page.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import BlogCardOne from '@/components/sections/blog/BlogCardOne'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Briefcase } from 'lucide-react'; + +export default function BlogPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2a70183..16aaadd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,42 @@ import type { Metadata } from "next"; -import { Montserrat, Inter } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Inter_Tight } from "next/font/google"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "SEO by Zain - Expert Google Rankings & Organic Growth", description: "Professional SEO services to rank your website on Google. Proven strategies for keyword rankings, organic traffic growth, and lead generation. Contact Zain today for results.", keywords: "SEO services, Google rankings, keyword ranking, organic traffic, link building, on-page SEO, off-page SEO, technical SEO", metadataBase: new URL("https://seobyzain.com"), - alternates: { - canonical: "https://seobyzain.com"}, - openGraph: { - title: "SEO by Zain - Expert Google Rankings", description: "Rank #1 on Google with proven SEO strategies. Affordable professional services for businesses wanting organic growth.", url: "https://seobyzain.com", siteName: "SEO by Zain", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ahch54lk2M1KDxRJoNSKMKHwRp/a-modern-sleek-seo-analytics-dashboard-w-1773048480790-922a5b5c.png", alt: "SEO Analytics Dashboard"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "SEO by Zain - Expert Google Rankings", description: "Professional SEO services for Google ranking improvements and organic traffic growth.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ahch54lk2M1KDxRJoNSKMKHwRp/a-modern-sleek-seo-analytics-dashboard-w-1773048480790-922a5b5c.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SEO by Zain", description: "Professional SEO services to rank higher on Google"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +