Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 681e29f414 | |||
| 9064cbba4d | |||
| 0d9df81c93 | |||
| 8ef335557e | |||
| d2198a52e0 |
@@ -1,49 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lora } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const lora = Lora({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Website Creation Services | Webild", description: "Custom websites built fast and affordably for small businesses and startups. Expert design, conversion optimization, and 4-week launch guarantee. Get your free quote today.", keywords: "website design, web development, small business websites, startup web design, affordable websites, fast website creation, conversion optimization", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Professional Website Creation Services | Webild", description: "We create custom, high-converting websites that help small businesses establish credibility and attract customers—without the enterprise price tag.", siteName: "Webild", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-vector/professional-dashboard-user-panel_23-2148310538.jpg", alt: "Professional website dashboard and design showcase"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Website Creation Services | Webild", description: "Custom websites built fast and affordably for small businesses and startups.", images: ["http://img.b2bpic.net/free-vector/professional-dashboard-user-panel_23-2148310538.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Webild - Professional Websites Built Fast, Priced Right", description: "Custom, high-converting websites for small businesses and startups. Fast, affordable web design and development."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={lora.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -77,12 +77,13 @@ export default function LandingPage() {
|
||||
tagIcon={Sparkles}
|
||||
features={[
|
||||
{
|
||||
title: "Custom Web Design", description: "Tailored designs that reflect your brand identity and resonate with your target audience", bentoComponent: "reveal-icon", icon: Palette,
|
||||
title: "Custom Web Design", description: "Tailored designs that reflect your brand identity and resonate with your target audience. Builds trust and credibility, increasing conversions by up to 40% through professional aesthetics and optimized user experience.", bentoComponent: "reveal-icon", icon: Palette,
|
||||
},
|
||||
{
|
||||
title: "Conversion Optimization", description: "Strategic layouts and copy designed to turn visitors into customers", bentoComponent: "line-chart"},
|
||||
title: "Conversion Optimization", description: "Strategic layouts and copy designed to turn visitors into customers. We implement proven conversion patterns and A/B testing to maximize sales and lead generation from your existing traffic.", bentoComponent: "line-chart"
|
||||
},
|
||||
{
|
||||
title: "Mobile Responsive", description: "Perfect experience on all devices, from smartphones to desktop computers", bentoComponent: "phone", statusIcon: Lock,
|
||||
title: "Mobile Responsive", description: "Perfect experience on all devices, from smartphones to desktop computers. With 60% of web traffic now mobile, a responsive design ensures you capture every customer opportunity across all platforms.", bentoComponent: "phone", statusIcon: Lock,
|
||||
alertIcon: Bell,
|
||||
alertTitle: "Site Live", alertMessage: "Your website is ready", apps: [
|
||||
{ name: "Website", icon: Globe },
|
||||
@@ -96,7 +97,7 @@ export default function LandingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "SEO Ready", description: "Built with search engine optimization to help customers find you online", bentoComponent: "3d-stack-cards", items: [
|
||||
title: "SEO Ready", description: "Built with search engine optimization to help customers find you online. Our SEO-optimized sites rank higher on Google, driving organic traffic and reducing your customer acquisition costs long-term.", bentoComponent: "3d-stack-cards", items: [
|
||||
{
|
||||
icon: Search,
|
||||
title: "SEO", subtitle: "Optimized", detail: "Find you online"
|
||||
@@ -112,7 +113,7 @@ export default function LandingPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Launch Timeline", description: "Get your website live in weeks, not months", bentoComponent: "3d-task-list", items: [
|
||||
title: "Launch Timeline", description: "Get your website live in weeks, not months. Our streamlined process eliminates delays while maintaining quality, so your business starts generating leads faster and you beat competitors to market.", bentoComponent: "3d-task-list", items: [
|
||||
{ icon: Pencil, label: "Design", time: "1-2 weeks" },
|
||||
{ icon: Code, label: "Development", time: "1-2 weeks" },
|
||||
{ icon: Rocket, label: "Launch", time: "Go Live" },
|
||||
|
||||
Reference in New Issue
Block a user