diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 93d8890..0d7d026 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,45 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Manrope } 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 manrope = Manrope({
- variable: "--font-manrope", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Neon Sign Builder - Custom Neon Design & Ordering", description: "Create custom neon signs with real-time preview, live pricing calculator, and instant WhatsApp ordering. Design your perfect neon in minutes.", keywords: "neon sign builder, custom neon, LED neon, sign designer, online neon builder, neon customizer, create neon signs", robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Create Custom Neon Signs | NeonBuilder", description: "Design stunning custom neon signs with real-time preview, dynamic pricing, and instant WhatsApp ordering. Create your perfect neon in seconds."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2073de4..9641148 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -37,7 +37,8 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" },
]}
button={{
- text: "Start Customizing", href: "#builder"}}
+ text: "Start Customizing", href: "#builder"
+ }}
/>
@@ -83,22 +84,28 @@ export default function LandingPage() {
features={[
{
icon: Type,
- title: "Text Input", description: "Enter your custom text and watch it transform into glowing neon in real-time"},
+ title: "Text Input", description: "Enter your custom text and watch it transform into glowing neon in real-time"
+ },
{
icon: Palette,
- title: "Color Picker", description: "Choose from hundreds of vibrant neon colors to match your style perfectly"},
+ title: "Color Picker", description: "Choose from hundreds of vibrant neon colors to match your style perfectly"
+ },
{
icon: Maximize2,
- title: "Size Selector", description: "Select from Small (40-60cm), Medium (60-90cm), or Large (90-120cm) sizes"},
+ title: "Size Selector", description: "Select from Small (40-60cm), Medium (60-90cm), or Large (90-120cm) sizes"
+ },
{
icon: Square,
- title: "Backboard Options", description: "Choose cut-to-shape, rectangle, or round backboards for your neon sign"},
+ title: "Backboard Options", description: "Choose cut-to-shape, rectangle, or round backboards for your neon sign"
+ },
{
icon: Zap,
- title: "Mounting Solutions", description: "Wall screws, hanging kits, or stands - we have the perfect mounting for you"},
+ title: "Mounting Solutions", description: "Wall screws, hanging kits, or stands - we have the perfect mounting for you"
+ },
{
icon: DollarSign,
- title: "Auto Price Calculator", description: "Real-time pricing updates based on letter count, size, and customizations"},
+ title: "Auto Price Calculator", description: "Real-time pricing updates based on letter count, size, and customizations"
+ },
]}
textboxLayout="default"
animationType="slide-up"
@@ -109,28 +116,32 @@ export default function LandingPage() {