Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5167b44ae4 | |||
| 8231efe408 | |||
| 7f227a8849 | |||
| 09f2f21d1e | |||
| 488ed8c7a7 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
const dmSans = DM_Sans({ subsets: ["latin"] });
|
||||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Midnight Studio | Web Design & Development Agency", description: "Award-winning web design agency creating stunning, high-converting websites. Custom designs, responsive development, and brand strategy for businesses ready to grow.", keywords: "web design, web development, digital design, responsive websites, UI/UX design, e-commerce design, brand strategy", metadataBase: new URL("https://midnightstudio.com"),
|
title: "Midnight Studio | Web Design & Development", description: "Award-winning web design and development agency crafting stunning digital experiences that drive conversions."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://midnightstudio.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Midnight Studio | Web Design & Development Agency", description: "Transform your digital presence with award-winning web design and development services.", url: "https://midnightstudio.com", siteName: "Midnight Studio", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATxypgbvhMnCdm5vtKmlpw2FEq/a-modern-web-design-showcase-featuring-m-1772630693269-99f45d77.png", alt: "Midnight Studio Web Design Portfolio"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Midnight Studio | Web Design & Development", description: "Award-winning web design agency creating stunning digital experiences.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATxypgbvhMnCdm5vtKmlpw2FEq/a-modern-web-design-showcase-featuring-m-1772630693269-99f45d77.png"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={dmSans.className}>{children}
|
||||||
<body
|
|
||||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -192,7 +192,7 @@ export default function LandingPage() {
|
|||||||
id: "4", name: "Michael Thompson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATxypgbvhMnCdm5vtKmlpw2FEq/professional-business-executive-portrait-1772630693687-80acba38.png", imageAlt: "Michael Thompson"
|
id: "4", name: "Michael Thompson", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATxypgbvhMnCdm5vtKmlpw2FEq/professional-business-executive-portrait-1772630693687-80acba38.png", imageAlt: "Michael Thompson"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
cardTitle="Join 150+ successful companies who've transformed their digital presence with Midnight Studio"
|
cardTitle="Companies increased conversions by an average of 40% after redesigning with Midnight Studio"
|
||||||
cardTag="Trusted by Industry Leaders"
|
cardTag="Trusted by Industry Leaders"
|
||||||
cardTagIcon={Users}
|
cardTagIcon={Users}
|
||||||
cardAnimation="slide-up"
|
cardAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user