Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-11 13:35:17 +00:00
3 changed files with 55 additions and 16 deletions

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Kanton Schwyz - Official Government Portal",
description: "Modern portal for Canton Schwyz government services, jobs, permits, and citizen information. Easy access to taxes, ePolizei, legal documents, and current announcements.",
keywords: "Canton Schwyz, government services, permits, jobs, taxes, Switzerland",
metadataBase: new URL("https://www.sz.ch"),
alternates: {
canonical: "https://www.sz.ch",
},
openGraph: {
title: "Kanton Schwyz",
description: "Your official gateway to Canton Schwyz government services and information",
url: "https://www.sz.ch",
siteName: "Kanton Schwyz",
type: "website",
images: [
{
url: "https://www.sz.ch/og-image.jpg",
alt: "Kanton Schwyz official portal",
},
],
},
twitter: {
card: "summary_large_image",
title: "Kanton Schwyz",
description: "Official government services portal",
images: ["https://www.sz.ch/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -118,7 +118,7 @@ export default function HomePage() {
price: "24/7 Available",
variant: "Filing, Credits, Information",
imageSrc:
"http://img.b2bpic.net/free-vector/business-landing-page-template-with-photo_23-2148247060.jpg",
"http://img.b2bpic.net/free-vector/business-landing-page-template-with-photo_23-2148247060.jpg?_wi=1",
imageAlt: "Tax services portal",
},
{
@@ -127,7 +127,7 @@ export default function HomePage() {
price: "Secure Access",
variant: "Reports, Information, Support",
imageSrc:
"http://img.b2bpic.net/free-photo/male-administrator-using-chroma-key-display-digital-analysis_482257-126246.jpg",
"http://img.b2bpic.net/free-photo/male-administrator-using-chroma-key-display-digital-analysis_482257-126246.jpg?_wi=1",
imageAlt: "Police services",
},
{
@@ -136,7 +136,7 @@ export default function HomePage() {
price: "Open Positions",
variant: "Career Listings, Applications",
imageSrc:
"http://img.b2bpic.net/free-photo/business-people-video-call-meeting_53876-30777.jpg",
"http://img.b2bpic.net/free-photo/business-people-video-call-meeting_53876-30777.jpg?_wi=1",
imageAlt: "Employment opportunities",
},
{
@@ -145,7 +145,7 @@ export default function HomePage() {
price: "Online Requests",
variant: "Apply, Track, Download",
imageSrc:
"http://img.b2bpic.net/free-photo/visa-application-form-smartphone_23-2149117760.jpg",
"http://img.b2bpic.net/free-photo/visa-application-form-smartphone_23-2149117760.jpg?_wi=1",
imageAlt: "Permits and licenses",
},
]}

View File

@@ -88,7 +88,7 @@ export default function ServicesPage() {
price: "24/7 Available",
variant: "Filing, Credits, Information",
imageSrc:
"http://img.b2bpic.net/free-vector/business-landing-page-template-with-photo_23-2148247060.jpg",
"http://img.b2bpic.net/free-vector/business-landing-page-template-with-photo_23-2148247060.jpg?_wi=2",
imageAlt: "Tax services portal",
},
{
@@ -97,7 +97,7 @@ export default function ServicesPage() {
price: "Secure Access",
variant: "Reports, Information, Support",
imageSrc:
"http://img.b2bpic.net/free-photo/male-administrator-using-chroma-key-display-digital-analysis_482257-126246.jpg",
"http://img.b2bpic.net/free-photo/male-administrator-using-chroma-key-display-digital-analysis_482257-126246.jpg?_wi=2",
imageAlt: "Police services",
},
{
@@ -106,7 +106,7 @@ export default function ServicesPage() {
price: "Open Positions",
variant: "Career Listings, Applications",
imageSrc:
"http://img.b2bpic.net/free-photo/business-people-video-call-meeting_53876-30777.jpg",
"http://img.b2bpic.net/free-photo/business-people-video-call-meeting_53876-30777.jpg?_wi=2",
imageAlt: "Employment opportunities",
},
{
@@ -115,7 +115,7 @@ export default function ServicesPage() {
price: "Online Requests",
variant: "Apply, Track, Download",
imageSrc:
"http://img.b2bpic.net/free-photo/visa-application-form-smartphone_23-2149117760.jpg",
"http://img.b2bpic.net/free-photo/visa-application-form-smartphone_23-2149117760.jpg?_wi=2",
imageAlt: "Permits and licenses",
},
]}