diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 9cf4f33..dc24c69 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,47 +1,24 @@
import type { Metadata } from "next";
-import { Inter_Tight } from "next/font/google";
+import { Poppins } from "next/font/google";
+import "./styles/variables.css";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const interTight = Inter_Tight({
- variable: "--font-inter-tight",
- subsets: ["latin"],
+const poppins = Poppins({
+ variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
- title: "Webild - Professionell Byggfirma i Stockholm",
- description: "Webild erbjuder expertrenovering, nybyggnation och totalentreprenad. 10+ års erfarenhet. Kostnadsfri offert. ROT-avdrag möjligt.",
- keywords: "byggfirma stockholm, renovering, nybyggnation, badrum, kök, fasadarbete, tal entreprenad",
- metadataBase: new URL("https://webild.se"),
- alternates: {
- canonical: "https://webild.se",
- },
- openGraph: {
- title: "Webild - Din Partner för Byggprojekt",
- description: "Professionella byggtjänster från planering till slutbesiktning. 10+ års erfarenhet.",
- siteName: "Webild",
- type: "website",
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Webild - Modern Professional Construction Company", description: "Professional construction services with warm orange accents and clean typography. Expert builders delivering quality projects."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 639171b..2ad4682 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,11 +30,11 @@ import {
export default function HomePage() {
const navItems = [
- { name: "Hem", id: "/" },
- { name: "Tjänster", id: "/services" },
- { name: "Om Oss", id: "/about" },
- { name: "Projekt", id: "/projects" },
- { name: "Kontakt", id: "/contact" },
+ { name: "Home", id: "/" },
+ { name: "Services", id: "/services" },
+ { name: "About", id: "/about" },
+ { name: "Projects", id: "/projects" },
+ { name: "Contact", id: "/contact" },
];
return (
@@ -61,43 +61,43 @@ export default function HomePage() {
@@ -161,23 +161,23 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index 78db620..f46a546 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -21,11 +21,11 @@ import {
export default function ServicesPage() {
const navItems = [
- { name: "Hem", id: "/" },
- { name: "Tjänster", id: "/services" },
- { name: "Om Oss", id: "/about" },
- { name: "Projekt", id: "/projects" },
- { name: "Kontakt", id: "/contact" },
+ { name: "Home", id: "/" },
+ { name: "Services", id: "/services" },
+ { name: "About", id: "/about" },
+ { name: "Projects", id: "/projects" },
+ { name: "Contact", id: "/contact" },
];
return (
@@ -52,35 +52,35 @@ export default function ServicesPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/styles/base.css b/src/app/styles/base.css
index a25430f..0f9f89d 100644
--- a/src/app/styles/base.css
+++ b/src/app/styles/base.css
@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
- font-family: var(--font-inter-tight), sans-serif;
+ font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
- font-family: var(--font-inter-tight), sans-serif;
+ font-family: var(--font-poppins), sans-serif;
}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index 14ae6e4..cf16b9a 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -5,7 +5,7 @@
/* --background: #f7f6f7;;
--card: #ffffff;;
--foreground: #25190c;;
- --primary-cta: #ff6207;;
+ --primary-cta: #ff8c42;;
--secondary-cta: #ffffff;;
--accent: #ffce93;;
--background-accent: #e8cfa8;; */
@@ -13,7 +13,7 @@
--background: #f7f6f7;;
--card: #ffffff;;
--foreground: #25190c;;
- --primary-cta: #ff6207;;
+ --primary-cta: #ff8c42;;
--primary-cta-text: #f7f6f7;;
--secondary-cta: #ffffff;;
--secondary-cta-text: #25190c;;