Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-11 07:59:02 +00:00
6 changed files with 68 additions and 27 deletions

View File

@@ -104,7 +104,7 @@ export default function AboutPage() {
"All our electricians are fully certified, insured, and continuously trained on the latest electrical codes and safety standards.",
tags: ["Professional", "Certified"],
imageSrc:
"http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg",
"http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg?_wi=2",
imageAlt: "professional electrician team",
},
{
@@ -115,7 +115,7 @@ export default function AboutPage() {
"From initial consultation through project completion, we manage every detail, ensuring timely delivery and exceptional results.",
tags: ["Management", "Support"],
imageSrc:
"http://img.b2bpic.net/free-photo/electrician-builder-work-installation-lamps-height-professional-overalls-with-drill-repair-site_169016-8625.jpg",
"http://img.b2bpic.net/free-photo/electrician-builder-work-installation-lamps-height-professional-overalls-with-drill-repair-site_169016-8625.jpg?_wi=2",
imageAlt: "project management and oversight",
},
{
@@ -126,7 +126,7 @@ export default function AboutPage() {
"We use the latest tools and technology to deliver modern, efficient electrical systems that are built to last.",
tags: ["Technology", "Innovation"],
imageSrc:
"http://img.b2bpic.net/free-photo/young-woman-using-home-technology_23-2149216655.jpg",
"http://img.b2bpic.net/free-photo/young-woman-using-home-technology_23-2149216655.jpg?_wi=2",
imageAlt: "modern technology solutions",
},
]}
@@ -154,7 +154,7 @@ export default function AboutPage() {
{/* Footer */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg?_wi=2"
imageAlt="Professional electricians working together installation project"
logoText="Sawotec"
copyrightText="© 2025 Sawotec Electrical Solutions. All rights reserved."

View File

@@ -88,7 +88,7 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg?_wi=5"
imageAlt="professional electricians working together installation project"
logoText="Sawotec"
copyrightText="© 2025 Sawotec Electrical Solutions. All rights reserved."

View File

@@ -1,24 +1,63 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } 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 { Nunito_Sans } 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 nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Sawotec - Electrical Solutions in Upper Austria",
description: "Sawotec provides professional electrical installations, smart home systems, industrial services, and maintenance in Upper Austria. Reliable, trustworthy solutions for residential and commercial clients.",
keywords: "electrical installations, smart home systems, industrial electrical, electrician Upper Austria, electrical services Austria, Oberösterreich",
metadataBase: new URL("https://sawotec.at"),
alternates: {
canonical: "https://sawotec.at",
},
openGraph: {
title: "Sawotec - Reliable Electrical Solutions",
description: "Professional electrical installations and smart home systems in Upper Austria",
url: "https://sawotec.at",
siteName: "Sawotec",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg",
alt: "Sawotec Electrical Solutions",
},
],
},
twitter: {
card: "summary_large_image",
title: "Sawotec - Electrical Solutions",
description: "Professional electrical services in Upper Austria",
images: [
"http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunitoSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -77,7 +77,7 @@ export default function HomePage() {
<HeroLogo
logoText="Sawotec"
description="Reliable Electrical Solutions in Upper Austria"
imageSrc="http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg"
imageSrc="http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg?_wi=1"
imageAlt="Professional electricians installing electrical systems"
showDimOverlay={true}
buttons={[
@@ -118,7 +118,7 @@ export default function HomePage() {
"Complete electrical system installation for new constructions and renovations, including wiring, panels, outlets, and lighting systems.",
tags: ["Installation", "Professional"],
imageSrc:
"http://img.b2bpic.net/free-photo/electrician-builder-work-installation-lamps-height-professional-overalls-with-drill-repair-site_169016-8625.jpg",
"http://img.b2bpic.net/free-photo/electrician-builder-work-installation-lamps-height-professional-overalls-with-drill-repair-site_169016-8625.jpg?_wi=1",
imageAlt: "electrician installing electrical outlet wall residential",
},
{
@@ -129,7 +129,7 @@ export default function HomePage() {
"State-of-the-art smart home automation and control systems for energy efficiency, security, and convenience.",
tags: ["Smart Home", "Automation"],
imageSrc:
"http://img.b2bpic.net/free-photo/young-woman-using-home-technology_23-2149216655.jpg",
"http://img.b2bpic.net/free-photo/young-woman-using-home-technology_23-2149216655.jpg?_wi=1",
imageAlt: "smart home automation control system panel display",
},
{
@@ -140,7 +140,7 @@ export default function HomePage() {
"Specialized industrial electrical work including three-phase systems, machinery installation, and compliance solutions.",
tags: ["Industrial", "Machinery"],
imageSrc:
"http://img.b2bpic.net/free-photo/man-electrical-working-switchboard-with-fuses-uses-tablet_169016-51765.jpg",
"http://img.b2bpic.net/free-photo/man-electrical-working-switchboard-with-fuses-uses-tablet_169016-51765.jpg?_wi=1",
imageAlt: "industrial electrical three phase panel heavy machinery",
},
{
@@ -151,7 +151,7 @@ export default function HomePage() {
"Regular maintenance, troubleshooting, and emergency repairs to keep your electrical systems running safely and efficiently.",
tags: ["Maintenance", "Repairs"],
imageSrc:
"http://img.b2bpic.net/free-photo/male-electrician-uniform-working-switchboard-electricity_169016-67712.jpg",
"http://img.b2bpic.net/free-photo/male-electrician-uniform-working-switchboard-electricity_169016-67712.jpg?_wi=1",
imageAlt: "electrician performing maintenance electrical system inspection",
},
]}
@@ -203,7 +203,7 @@ export default function HomePage() {
{/* Footer */}
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg?_wi=1"
imageAlt="Professional electricians working together installation project"
logoText="Sawotec"
copyrightText="© 2025 Sawotec Electrical Solutions. All rights reserved."

View File

@@ -76,7 +76,7 @@ export default function ProjectsPage() {
<HeroLogo
logoText="Projects"
description="Featured Projects & Client Success Stories"
imageSrc="http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg"
imageSrc="http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg?_wi=4"
imageAlt="Professional electricians installing electrical systems"
showDimOverlay={true}
buttons={[
@@ -133,7 +133,7 @@ export default function ProjectsPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg?_wi=4"
imageAlt="Professional electricians working together installation project"
logoText="Sawotec"
copyrightText="© 2025 Sawotec Electrical Solutions. All rights reserved."

View File

@@ -76,7 +76,7 @@ export default function ServicesPage() {
<HeroLogo
logoText="Services"
description="Comprehensive Electrical Solutions for Every Need"
imageSrc="http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg"
imageSrc="http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses-uses-tablet_169016-23490.jpg?_wi=3"
imageAlt="Professional electricians installing electrical systems"
showDimOverlay={true}
buttons={[
@@ -107,7 +107,7 @@ export default function ServicesPage() {
"Complete electrical system installation for new constructions and renovations, including wiring, panels, outlets, and lighting systems.",
tags: ["Installation", "Professional"],
imageSrc:
"http://img.b2bpic.net/free-photo/electrician-builder-work-installation-lamps-height-professional-overalls-with-drill-repair-site_169016-8625.jpg",
"http://img.b2bpic.net/free-photo/electrician-builder-work-installation-lamps-height-professional-overalls-with-drill-repair-site_169016-8625.jpg?_wi=3",
imageAlt: "electrician installing electrical outlet wall residential",
},
{
@@ -118,7 +118,7 @@ export default function ServicesPage() {
"State-of-the-art smart home automation and control systems for energy efficiency, security, and convenience.",
tags: ["Smart Home", "Automation"],
imageSrc:
"http://img.b2bpic.net/free-photo/young-woman-using-home-technology_23-2149216655.jpg",
"http://img.b2bpic.net/free-photo/young-woman-using-home-technology_23-2149216655.jpg?_wi=3",
imageAlt: "smart home automation control system panel display",
},
{
@@ -129,7 +129,7 @@ export default function ServicesPage() {
"Specialized industrial electrical work including three-phase systems, machinery installation, and compliance solutions.",
tags: ["Industrial", "Machinery"],
imageSrc:
"http://img.b2bpic.net/free-photo/man-electrical-working-switchboard-with-fuses-uses-tablet_169016-51765.jpg",
"http://img.b2bpic.net/free-photo/man-electrical-working-switchboard-with-fuses-uses-tablet_169016-51765.jpg?_wi=2",
imageAlt:
"industrial electrical three phase panel heavy machinery",
},
@@ -141,7 +141,7 @@ export default function ServicesPage() {
"Regular maintenance, troubleshooting, and emergency repairs to keep your electrical systems running safely and efficiently.",
tags: ["Maintenance", "Repairs"],
imageSrc:
"http://img.b2bpic.net/free-photo/male-electrician-uniform-working-switchboard-electricity_169016-67712.jpg",
"http://img.b2bpic.net/free-photo/male-electrician-uniform-working-switchboard-electricity_169016-67712.jpg?_wi=2",
imageAlt:
"electrician performing maintenance electrical system inspection",
},
@@ -170,7 +170,7 @@ export default function ServicesPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg"
imageSrc="http://img.b2bpic.net/free-photo/architects-looking-laptop-screen_1098-4113.jpg?_wi=3"
imageAlt="Professional electricians working together installation project"
logoText="Sawotec"
copyrightText="© 2025 Sawotec Electrical Solutions. All rights reserved."