Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b60cbeb09 | |||
| 5ab8b0575f | |||
| 5f75f4b964 | |||
| 681e29f414 | |||
| 9064cbba4d | |||
| 0d9df81c93 | |||
| 8ef335557e | |||
| d2198a52e0 |
@@ -1,49 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Lora } 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 halant = Halant({
|
const lora = Lora({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "Webild - Professional Websites Built Fast, Priced Right", description: "Custom, high-converting websites for small businesses and startups. Fast, affordable web design and development."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={lora.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -77,12 +77,13 @@ export default function LandingPage() {
|
|||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
features={[
|
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,
|
alertIcon: Bell,
|
||||||
alertTitle: "Site Live", alertMessage: "Your website is ready", apps: [
|
alertTitle: "Site Live", alertMessage: "Your website is ready", apps: [
|
||||||
{ name: "Website", icon: Globe },
|
{ 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,
|
icon: Search,
|
||||||
title: "SEO", subtitle: "Optimized", detail: "Find you online"
|
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: Pencil, label: "Design", time: "1-2 weeks" },
|
||||||
{ icon: Code, label: "Development", time: "1-2 weeks" },
|
{ icon: Code, label: "Development", time: "1-2 weeks" },
|
||||||
{ icon: Rocket, label: "Launch", time: "Go Live" },
|
{ icon: Rocket, label: "Launch", time: "Go Live" },
|
||||||
@@ -225,7 +226,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Get Your Website Quote"
|
title="Get Your Free Website Quote in 60 Seconds"
|
||||||
description="Ready to launch your online presence? Tell us about your project and we'll provide a custom quote within 24 hours."
|
description="Ready to launch your online presence? Tell us about your project and we'll provide a custom quote within 24 hours."
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{
|
||||||
@@ -250,7 +251,7 @@ export default function LandingPage() {
|
|||||||
imageAlt="Professional workspace with laptops and creative materials"
|
imageAlt="Professional workspace with laptops and creative materials"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
buttonText="Get My Quote"
|
buttonText="Get Free Quote"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user