Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ecf3fc1d8d | |||
| 58f3f54e26 | |||
| a2206ee13a | |||
| 2535994c82 | |||
| d8bcacee46 |
@@ -1,55 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Open_Sans } from "next/font/google";
|
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } 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 openSans = Open_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-open-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
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: "Urban Production Sweden | Professionell Evenemangshantering Stockholm", description: "Urban Production - Event management i Stockholm. Fullservice ljud-, ljus- och scenproduktion för konserter, konferenser och företagsevent. Kontakta oss idag!", keywords: "evenemangshantering Stockholm, scenproduktion, event management, ljud ljus produktion, Norsborg", metadataBase: new URL("https://urbanproduction.se"),
|
title: "Urban Production - Professionell Evenemangshantering Stockholm", description: "Urban Production skapar minnen som varar. Vi specialiserar oss på högkvalitativa event med komplett ljud-, ljus- och scenproduktion i Stockholm."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://urbanproduction.se"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Urban Production Sweden - Evenemangshantering", description: "Professionell event production i Stockholm. Vi skapar minne som varar.", type: "website", siteName: "Urban Production"
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Urban Production - Event Management"
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${openSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -194,7 +194,7 @@ export default function LandingPage() {
|
|||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Kontakta Oss Idag"
|
title="Kontakta Oss Idag"
|
||||||
description="Är du redo att skapa ett minne? Kontakta Urban Production för en kostnadsfri konsultation om ditt nästa evenemang. Vi svarar vanligtvis inom 24 timmar."
|
description="24-timmars svar garanterat. Vi är redo att skapa ett minne! Kontakta Urban Production för en kostnadsfri initial konsultation - ingen bindning. Vi betjänar hela Stockholmsregionen."
|
||||||
inputs={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Ditt namn", required: true },
|
{ name: "name", type: "text", placeholder: "Ditt namn", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "Din e-postadress", required: true }
|
{ name: "email", type: "email", placeholder: "Din e-postadress", required: true }
|
||||||
|
|||||||
Reference in New Issue
Block a user