Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3110c282c3 | |||
| 3805b43e36 | |||
| 3532c90fff | |||
| 3918cb8b2f | |||
| 204e5dc37c | |||
| f1c114c03a | |||
| d0bac57666 | |||
| 1d1c1fbe46 | |||
| b626b073a8 | |||
| 6fc9690ade | |||
| 71d69dbc83 | |||
| 3e35bd7d94 | |||
| ae562b62b1 |
@@ -1,60 +1,29 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Web Design Agency | Professional Website Design Services", description: "Custom web design, development, and branding services for businesses. Transform your online presence with our expert team of designers and developers.", keywords: "web design agency, website design, web development, responsive design, brand design, e-commerce, digital design", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Webild Studio - Web Design Agency", description: "Professional web design and development services for businesses of all sizes.", url: "https://webild-studio.com", siteName: "Webild Studio", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AULLc0XW0VpwDtaRPhZeIaJAoE/a-stunning-modern-web-design-agency-work-1772642347417-10839d50.png", alt: "Webild Studio - Web Design Portfolio"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Webild Studio - Professional Web Design", description: "Transform your vision into digital reality with expert web design services.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AULLc0XW0VpwDtaRPhZeIaJAoE/a-stunning-modern-web-design-agency-work-1772642347417-10839d50.png"],
|
||||
},
|
||||
title: "Webild Studio", description: "Transform your vision into digital reality"
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1422,7 +1391,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -62,7 +62,7 @@ export default function LandingPage() {
|
||||
showDimOverlay={true}
|
||||
buttons={[
|
||||
{ text: "Start Your Project", href: "contact" },
|
||||
{ text: "View Our Work", href: "portfolio" },
|
||||
{ text: "See Case Studies", href: "portfolio" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -157,19 +157,19 @@ export default function LandingPage() {
|
||||
plans={[
|
||||
{
|
||||
id: "1", badge: "Starter", badgeIcon: Zap,
|
||||
price: "$2,500", subtitle: "Perfect for small businesses and portfolios", features: [
|
||||
price: "$1,500", subtitle: "Perfect for small businesses and portfolios", features: [
|
||||
"5-page responsive website", "Mobile optimization", "Basic SEO setup", "Contact form integration", "1 month free support"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2", badge: "Professional", badgeIcon: Star,
|
||||
price: "$5,500", subtitle: "Best for growing businesses", features: [
|
||||
price: "$3,500", subtitle: "Best for growing businesses", features: [
|
||||
"10-page custom website", "Advanced SEO optimization", "E-commerce functionality", "CMS integration", "Analytics setup", "3 months support included"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3", badge: "Enterprise", badgeIcon: Crown,
|
||||
price: "Custom", subtitle: "For large-scale projects", features: [
|
||||
price: "$7,500+", subtitle: "For large-scale projects", features: [
|
||||
"Unlimited pages", "Custom functionality", "Advanced integrations", "Ongoing support", "Performance optimization", "Dedicated account manager"
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user