Merge version_2 into main #4
@@ -1,58 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } 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";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Graphic Design Services | DesignStudio", description: "Award-winning graphic design agency offering logo design, branding, social media graphics, and creative design solutions for businesses of all sizes.", keywords: "graphic design, logo design, brand identity, social media design, professional design agency, branding services, poster design, flyer design", metadataBase: new URL("https://designstudio.com"),
|
||||
alternates: {
|
||||
canonical: "https://designstudio.com"},
|
||||
openGraph: {
|
||||
title: "Creative Graphic Design Services | DesignStudio", description: "Transform your brand with award-winning graphic design. Fast delivery, affordable pricing, unlimited revisions.", url: "https://designstudio.com", siteName: "DesignStudio", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/gradient-interior-landing-page-design-template_23-2149263407.jpg", alt: "DesignStudio Portfolio Showcase"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Graphic Design Services", description: "Creative design solutions that elevate your brand. Fast, affordable, and professional.", images: ["http://img.b2bpic.net/free-vector/gradient-interior-landing-page-design-template_23-2149263407.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "DesignStudio - Creative Graphic Design Services", description: "Transform your vision into stunning visual designs. We specialize in logo design, branding, social media graphics, and more."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -244,7 +244,7 @@ export default function LandingPage() {
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
title="Ready to Elevate Your Brand?"
|
||||
description="Subscribe to our newsletter for design tips, inspiration, and exclusive offers. Or reach out directly through WhatsApp, email, or our contact form."
|
||||
description="Get design inspiration and exclusive offers delivered weekly"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/studio-arrangement-shooting_23-2148503652.jpg"
|
||||
|
||||
Reference in New Issue
Block a user