diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 83a0a46..ceab930 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,48 +1,20 @@
import type { Metadata } from "next";
-import { Libre_Baskerville, Inter } from "next/font/google";
+import { Inter } 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 inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "BESTRONG Metalworks | Custom Steel & Metal Fabrication Bern", description: "Expert steel and metalworking in Bern, Switzerland. Custom fabrication, welding, gates, and industrial metalwork with 20+ years of precision craftsmanship.", keywords: "metalworking, steel fabrication, custom gates, welding, Bern, Switzerland, industrial metal", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "BESTRONG Metalworks | Custom Steel & Metal Fabrication", description: "Expert steel and metalworking in Bern. Custom fabrication with precision craftsmanship.", siteName: "BESTRONG Metalworks", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/blacksmith-work-his-forge_23-2152021020.jpg", alt: "Professional metalworking workshop"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "BESTRONG Metalworks | Precision Metalwork in Bern", description: "Custom steel and metal fabrication for residential, commercial, and industrial projects.", images: ["http://img.b2bpic.net/free-photo/blacksmith-work-his-forge_23-2152021020.jpg"],
- },
-};
+ title: "BESTRONG Metalworks", description: "Custom steel and metal fabrication services for residential, commercial, and industrial projects in Bern"};
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 9238a67..e88ed11 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -50,19 +50,23 @@ export default function LandingPage() {
testimonials={[
{
name: "Thomas Mueller", handle: "Homeowner, Bern", testimonial: "Exceptional craftsmanship. They transformed our vision into stunning metal gates with perfect attention to detail.", rating: 5,
- imageSrc: "/placeholders/placeholder1.webp?_wi=1"},
+ imageSrc: "/placeholders/placeholder1.webp?_wi=1"
+ },
{
name: "Sarah Schneider", handle: "Architect, Interlaken", testimonial: "Reliable partner for all our metal fabrication needs. Quality work, professional team, always on time.", rating: 5,
- imageSrc: "/placeholders/placeholder1.webp?_wi=2"},
+ imageSrc: "/placeholders/placeholder1.webp?_wi=2"
+ },
{
name: "Klaus Weber", handle: "Factory Owner, Bern", testimonial: "Outstanding industrial metalwork solutions. They understand precision and deadlines completely.", rating: 5,
- imageSrc: "/placeholders/placeholder1.webp?_wi=3"},
+ imageSrc: "/placeholders/placeholder1.webp?_wi=3"
+ },
{
name: "Emma Keller", handle: "Interior Designer, Zurich", testimonial: "Creative solutions with impeccable execution. Every project exceeds our expectations.", rating: 5,
- imageSrc: "/placeholders/placeholder1.webp?_wi=4"},
+ imageSrc: "/placeholders/placeholder1.webp?_wi=4"
+ },
]}
buttons={[
- { text: "Start Your Project", href: "contact" },
+ { text: "Get Free Quote", href: "contact" },
{ text: "View Our Work", href: "portfolio" },
]}
buttonAnimation="slide-up"
@@ -116,11 +120,17 @@ export default function LandingPage() {