Merge version_2 into main #4
@@ -1,46 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Outfit } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const outfit = Outfit({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Web Design Studio | Beautiful & Functional Websites", description: "Award-winning web design studio creating stunning, high-converting websites for businesses ready to stand out online.", keywords: "web design, web development, UI/UX design, responsive design, digital strategy", openGraph: {
|
||||
title: "Web Design Studio | Beautiful & Functional Websites", description: "Award-winning web design studio creating stunning, high-converting websites for businesses.", siteName: "WebDesign Studio", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/gradient-interior-landing-page-design-template_23-2149263407.jpg", alt: "Web Design Portfolio Showcase"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Web Design Studio | Beautiful & Functional Websites", description: "Award-winning web design studio creating stunning, high-converting websites.", images: ["http://img.b2bpic.net/free-vector/gradient-interior-landing-page-design-template_23-2149263407.jpg"]
|
||||
}
|
||||
};
|
||||
title: "WebDesign Studio", description: "Award-winning web design and development services"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={outfit.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1408,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -105,15 +105,15 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Responsive Web Design", description: "Beautiful websites that work perfectly on all devices. We design mobile-first experiences that drive engagement.", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-responsive-website-design_23-2149477719.jpg", imageAlt: "Responsive design on multiple devices"
|
||||
title: "Responsive Web Design: Reach 98% of Devices", description: "Beautiful websites that work perfectly on all devices, increasing mobile conversions by up to 40%. We design mobile-first experiences that drive engagement and ensure your business reaches every potential customer.", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-responsive-website-design_23-2149477719.jpg", imageAlt: "Responsive design on multiple devices"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "User Experience Design", description: "Intuitive interfaces that guide users seamlessly. Every click, scroll, and interaction is carefully crafted.", imageSrc: "http://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169842.jpg", imageAlt: "User interface design mockup"
|
||||
title: "User Experience Design: Boost Conversion Rates", description: "Intuitive interfaces that guide users seamlessly, reducing bounce rates by 35%. Every click, scroll, and interaction is carefully crafted to guide users toward your business goals and maximize conversions.", imageSrc: "http://img.b2bpic.net/free-photo/representation-user-experience-interface-design_23-2150169842.jpg", imageAlt: "User interface design mockup"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Performance Optimization", description: "Fast-loading sites that convert. We optimize every element for speed and SEO to maximize your reach.", imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg", imageAlt: "Performance analytics and optimization"
|
||||
title: "Performance Optimization: 50% Faster Load Times", description: "Fast-loading sites that convert visitors into customers. We optimize every element for speed and SEO, improving search rankings and reducing page abandonment by 25% for maximum reach and revenue.", imageSrc: "http://img.b2bpic.net/free-photo/student-home-taking-notes-while-watching-presentation-closeup_482257-118737.jpg", imageAlt: "Performance analytics and optimization"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user