Merge version_2 into main #5
107
src/app/cookies/page.tsx
Normal file
107
src/app/cookies/page.tsx
Normal file
@@ -0,0 +1,107 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function CookiesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Web Industries Stade"
|
||||
navItems={[
|
||||
{ name: "Startseite", id: "/" },
|
||||
{ name: "Über uns", id: "#about" },
|
||||
{ name: "Dienstleistungen", id: "#features" },
|
||||
{ name: "Expertise", id: "#metrics" },
|
||||
{ name: "Bewertungen", id: "#testimonials" }
|
||||
]}
|
||||
button={{ text: "Kontakt aufnehmen", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Cookie-Richtlinie"
|
||||
subtitle="Zuletzt aktualisiert: Januar 2025"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Was sind Cookies?", content: [
|
||||
{
|
||||
type: "paragraph", text: "Cookies sind kleine Textdateien, die auf Ihrem Computer gespeichert werden und Informationen über Ihren Besuch auf unserer Website enthalten."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Arten von Cookies", content: [
|
||||
{
|
||||
type: "paragraph", text: "Wir verwenden folgende Arten von Cookies:"
|
||||
},
|
||||
{
|
||||
type: "list", items: ["Notwendige Cookies: Für Website-Funktionalität erforderlich", "Analyse-Cookies: Zur Verbesserung unseres Services", "Marketing-Cookies: Zur Personalisierung von Inhalten"]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Ihre Kontrolle", content: [
|
||||
{
|
||||
type: "paragraph", text: "Sie können Cookies in Ihrem Browser verwalten und die meisten ablehnen. Dies kann jedoch einige Website-Funktionen beeinträchtigen."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Drittanbieter-Cookies", content: [
|
||||
{
|
||||
type: "paragraph", text: "Unsere Website kann Cookies von Drittanbietern enthalten (z.B. Google Analytics). Diese unterliegen den Datenschutzrichtlinien der jeweiligen Anbieter."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Kontakt", content: [
|
||||
{
|
||||
type: "paragraph", text: "Bei Fragen zu Cookies kontaktieren Sie uns: info@web-industries-stade.de oder 04141 797650"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Web Industries Stade GmbH"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt", items: [
|
||||
{ label: "Sophie-Scholl-Weg 22a, 21684 Stade", href: "https://maps.google.com/?q=Sophie-Scholl-Weg+22a,+21684+Stade" },
|
||||
{ label: "Telefon: 04141 797650", href: "tel:041417976506" },
|
||||
{ label: "Google (4,6★)", href: "https://maps.google.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Rechtliches", items: [
|
||||
{ label: "Datenschutz", href: "/privacy" },
|
||||
{ label: "Impressum", href: "/impressum" },
|
||||
{ label: "AGB", href: "/terms" },
|
||||
{ label: "Cookies", href: "/cookies" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Web Industries Stade GmbH. Alle Rechte vorbehalten."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
110
src/app/impressum/page.tsx
Normal file
110
src/app/impressum/page.tsx
Normal file
@@ -0,0 +1,110 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function ImpressumPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Web Industries Stade"
|
||||
navItems={[
|
||||
{ name: "Startseite", id: "/" },
|
||||
{ name: "Über uns", id: "#about" },
|
||||
{ name: "Dienstleistungen", id: "#features" },
|
||||
{ name: "Expertise", id: "#metrics" },
|
||||
{ name: "Bewertungen", id: "#testimonials" }
|
||||
]}
|
||||
button={{ text: "Kontakt aufnehmen", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Impressum"
|
||||
subtitle="Angaben gemäß §5 Telemediengesetz (TMG)"
|
||||
sections={[
|
||||
{
|
||||
heading: "Verantwortliche Person", content: [
|
||||
{
|
||||
type: "paragraph", text: "Web Industries Stade GmbH"
|
||||
},
|
||||
{
|
||||
type: "paragraph", text: "Sophie-Scholl-Weg 22a\n21684 Stade\nDeutschland"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Kontaktinformationen", content: [
|
||||
{
|
||||
type: "paragraph", text: "Telefon: 04141 797650"
|
||||
},
|
||||
{
|
||||
type: "paragraph", text: "E-Mail: info@web-industries-stade.de"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Geschäftsmodell", content: [
|
||||
{
|
||||
type: "paragraph", text: "Web Industries Stade GmbH ist ein Unternehmen spezialisiert auf die Herstellung von Composite-Materialien, Präzisionsfertigung und industrielle Lösungen für die Luft- und Raumfahrtindustrie."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Haftungsausschluss", content: [
|
||||
{
|
||||
type: "paragraph", text: "Trotz sorgfältiger Kontrolle übernehmen wir keine Haftung für die Inhalte externer Links. Für den Inhalt der verlinkten Seiten sind ausschließlich deren Betreiber verantwortlich."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Urheberrecht", content: [
|
||||
{
|
||||
type: "paragraph", text: "Die Inhalte und Werke dieser Website unterliegen dem Urheberrecht. Ihre Vervielfältigung, Bearbeitung, Verbreitung und Verwertung sind ohne Zustimmung nicht gestattet."
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Web Industries Stade GmbH"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt", items: [
|
||||
{ label: "Sophie-Scholl-Weg 22a, 21684 Stade", href: "https://maps.google.com/?q=Sophie-Scholl-Weg+22a,+21684+Stade" },
|
||||
{ label: "Telefon: 04141 797650", href: "tel:041417976506" },
|
||||
{ label: "Google (4,6★)", href: "https://maps.google.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Rechtliches", items: [
|
||||
{ label: "Datenschutz", href: "/privacy" },
|
||||
{ label: "Impressum", href: "/impressum" },
|
||||
{ label: "AGB", href: "/terms" },
|
||||
{ label: "Cookies", href: "/cookies" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Web Industries Stade GmbH. Alle Rechte vorbehalten."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,32 +1,18 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
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 = {
|
||||
title: "Solemio Stadion - Deutschlands Premium Veranstaltungsort", description: "Erleben Sie erstklassige Sportveranstaltungen, Konzerte und Events im Solemio Stadion. 60.000 Plätze, moderne Einrichtungen und unvergessliche Momente erwarten Sie.", keywords: "Stadion, Veranstaltungen, Tickets, Sportveranstaltungen, Konzerte, Deutschland", openGraph: {
|
||||
title: "Solemio Stadion - Premium Veranstaltungsort", description: "Moderne Arena mit 60.000 Sitzplätzen für Fußball, Konzerte und Events", type: "website", siteName: "Solemio Stadion"
|
||||
},
|
||||
title: "Web Industries Stade GmbH - Präzision für die Luft- und Raumfahrt", description: "Web Industries Stade GmbH - Spezialist für Composite-Materialien, Präzisionsfertigung und Industrielösungen für die Luft- und Raumfahrtindustrie. 4,6 Sterne bewertet.", keywords: "Aerospace, Composite, Präzisionsfertigung, Luft- und Raumfahrt, Stade, Industrielösungen, Qualitätskontrolle", openGraph: {
|
||||
title: "Web Industries Stade GmbH - Aerospace & Industrial Solutions", description: "Hochpräzise Composite-Materialien und Fertigungslösungen für die Luft- und Raumfahrt", type: "website", siteName: "Web Industries Stade GmbH"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Solemio Stadion", description: "Deutschlands führende Multifunktions-Sportarena"
|
||||
}
|
||||
card: "summary_large_image", title: "Web Industries Stade GmbH", description: "Präzision für die Luft- und Raumfahrt"},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -35,11 +21,9 @@ export default function RootLayout({
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<html lang="de" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
165
src/app/page.tsx
165
src/app/page.tsx
@@ -9,73 +9,73 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import { Sparkles, Building2, Trophy, Zap, BarChart3, Star } from 'lucide-react';
|
||||
import { Zap, Building2, CheckCircle, Award, Phone, MapPin, Mail } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="soft"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmall"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="extrabold"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Solemio Stadion"
|
||||
brandName="Web Industries Stade"
|
||||
navItems={[
|
||||
{ name: "Über uns", id: "about" },
|
||||
{ name: "Einrichtungen", id: "features" },
|
||||
{ name: "Statistiken", id: "metrics" },
|
||||
{ name: "Dienstleistungen", id: "features" },
|
||||
{ name: "Expertise", id: "metrics" },
|
||||
{ name: "Bewertungen", id: "testimonials" },
|
||||
{ name: "Kontakt", id: "contact" }
|
||||
]}
|
||||
button={{ text: "Karten buchen", href: "#contact" }}
|
||||
button={{ text: "Kontakt aufnehmen", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Willkommen im Solemio Stadion"
|
||||
description="Erleben Sie erstklassige Sportveranstaltungen, Konzerte und Events in einem der modernsten Stadien Deutschlands. Komfort, Leidenschaft und unvergessliche Momente warten auf Sie."
|
||||
tag="Premium Venue"
|
||||
tagIcon={Sparkles}
|
||||
title="Präzision für die Luft- und Raumfahrt"
|
||||
description="Web Industries Stade ist Ihr vertrauenswürdiger Partner für hochpräzise Composite-Materialien, Fertigungslösungen und Qualitätskontrolle in der Aerospace-Industrie. Mit Standort in Stade und 4,6 Sternen Bewertung."
|
||||
tag="Aerospace Excellence"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Tickets kaufen", href: "#contact" },
|
||||
{ text: "Mehr erfahren", href: "#about" }
|
||||
{ text: "Mehr erfahren", href: "#about" },
|
||||
{ text: "Kontaktieren Sie uns", href: "#contact" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
carouselItems={[
|
||||
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/analog-landscape-city-with-buildings_23-2149661459.jpg", imageAlt: "Solemio Stadium Main View" },
|
||||
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-sitting-grandstands_23-2149867419.jpg?_wi=1", imageAlt: "Premium Seating Area" },
|
||||
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/blured-photo-crowded-concert-hall-with-scene-stage-lights-with-people-rock-performance_627829-6110.jpg?_wi=1", imageAlt: "Stadium Interior" },
|
||||
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/aerial-drone-vertical-view-rally-support-country-s-european-integration_1268-23486.jpg?_wi=1", imageAlt: "Live Event Experience" },
|
||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/businessmen-suit-taking-notes-visit-international-headquarters-shareholders-meeting-corporate-ceo-attendance-executive-associate-doing-last-minute-changes-speech_482257-72949.jpg?_wi=1", imageAlt: "VIP Lounge Experience" },
|
||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-museum-football-stadium_1127-3046.jpg?_wi=1", imageAlt: "Modern Facilities" }
|
||||
{ id: "1", imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1200&q=80", imageAlt: "Aerospace Manufacturing" },
|
||||
{ id: "2", imageSrc: "https://images.unsplash.com/photo-1581092162562-40038f66c4b8?w=1200&q=80", imageAlt: "Composite Materials" },
|
||||
{ id: "3", imageSrc: "https://images.unsplash.com/photo-1581092916550-e323be2ae537?w=1200&q=80", imageAlt: "Precision Manufacturing" },
|
||||
{ id: "4", imageSrc: "https://images.unsplash.com/photo-1581092161562-40038f66c4b8?w=1200&q=80", imageAlt: "Quality Control" },
|
||||
{ id: "5", imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1200&q=80", imageAlt: "Industrial Solutions" },
|
||||
{ id: "6", imageSrc: "https://images.unsplash.com/photo-1581092160562-40038f66c4b8?w=1200&q=80", imageAlt: "Advanced Technology" }
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
autoPlayInterval={5000}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="Unser Stadion"
|
||||
tag="Über Web Industries Stade GmbH"
|
||||
tagIcon={Building2}
|
||||
tagAnimation="slide-up"
|
||||
title="Deutschlands führende Multifunktions-Sportarena"
|
||||
description="Das Solemio Stadion steht für Exzellenz"
|
||||
subdescription="Mit einer Kapazität von über 60.000 Sitzplätzen und modernster Technologie"
|
||||
icon={Trophy}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/blured-photo-crowded-concert-hall-with-scene-stage-lights-with-people-rock-performance_627829-6110.jpg?_wi=2"
|
||||
imageAlt="Solemio Stadium Overview"
|
||||
title="Ihre Quelle für Aerospace-Exzellenz"
|
||||
description="Mit Standort in Stade, Deutschland, beliefern wir die globale Luft- und Raumfahrtindustrie mit hochpräzisen Komponenten und Dienstleistungen."
|
||||
subdescription="Unsere Expertise in Composite-Materialien und Fertigungstechnologie macht uns zum bevorzugten Partner für anspruchsvolle Projekte. Qualität, Präzision und Zuverlässigkeit sind unser Versprechen."
|
||||
icon={Award}
|
||||
imageSrc="https://images.unsplash.com/photo-1581092162562-40038f66c4b8?w=800&q=80"
|
||||
imageAlt="Web Industries Stade Manufacturing"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -83,16 +83,16 @@ export default function LandingPage() {
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardThree
|
||||
title="Erstklassige Einrichtungen"
|
||||
description="Entdecken Sie die umfangreichen Einrichtungen des Solemio Stadions, die jeden Besuch unvergesslich machen."
|
||||
tag="Ausstattung"
|
||||
tagIcon={Zap}
|
||||
title="Unsere Dienstleistungen"
|
||||
description="Komprehensive Lösungen für die Luft- und Raumfahrtindustrie, von Materialentwicklung bis zur Qualitätssicherung."
|
||||
tag="Leistungen"
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
features={[
|
||||
{ id: "01", title: "Premium Sitzplätze", description: "Komfortable und ergonomische Sitzplätze mit optimaler Sichtlinie auf alle Spielfelder und Bühnen.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-sitting-grandstands_23-2149867419.jpg?_wi=2", imageAlt: "Premium Seating" },
|
||||
{ id: "02", title: "Modernste Einrichtungen", description: "State-of-the-Art Technologie, hochmoderne Sanitäranlagen und Restaurants für Ihr Wohlbefinden.", imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-museum-football-stadium_1127-3046.jpg?_wi=2", imageAlt: "Modern Facilities" },
|
||||
{ id: "03", title: "Event-Hosting", description: "Perfekt für Sportveranstaltungen, Konzerte, Unternehmensveranstaltungen und große Feiern.", imageSrc: "http://img.b2bpic.net/free-photo/aerial-drone-vertical-view-rally-support-country-s-european-integration_1268-23486.jpg?_wi=2", imageAlt: "Event Hosting" },
|
||||
{ id: "04", title: "VIP-Erlebnis", description: "Exklusive VIP-Lounges mit Premium-Service, besserer Sicht und gehobener Verpflegung.", imageSrc: "http://img.b2bpic.net/free-photo/businessmen-suit-taking-notes-visit-international-headquarters-shareholders-meeting-corporate-ceo-attendance-executive-associate-doing-last-minute-changes-speech_482257-72949.jpg?_wi=2", imageAlt: "VIP Experience" }
|
||||
{ id: "01", title: "Composite-Materialien", description: "Hochleistungs-Composite-Materialien für kritische Aerospace-Anwendungen mit höchsten Qualitätsstandards.", imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=600&q=80", imageAlt: "Composite Materials" },
|
||||
{ id: "02", title: "Präzisionsfertigung", description: "State-of-the-art Fertigungsverfahren für exakte Präzision und konstante Qualität bei allen Komponenten.", imageSrc: "https://images.unsplash.com/photo-1581092162562-40038f66c4b8?w=600&q=80", imageAlt: "Precision Manufacturing" },
|
||||
{ id: "03", title: "Industrielle Lösungen", description: "Maßgeschneiderte Lösungen für komplexe Herausforderungen in der Luft- und Raumfahrtfertigung.", imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=600&q=80", imageAlt: "Industrial Solutions" },
|
||||
{ id: "04", title: "Qualitätskontrolle", description: "Umfassende Qualitätskontrollverfahren mit modernster Prüftechnik und Zertifizierung nach internationalen Standards.", imageSrc: "https://images.unsplash.com/photo-1581092162562-40038f66c4b8?w=600&q=80", imageAlt: "Quality Control" }
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
@@ -103,16 +103,16 @@ export default function LandingPage() {
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
title="Beeindruckende Zahlen"
|
||||
description="Solemio Stadion in Zahlen - ein Beweis für unsere Größe und Bedeutung"
|
||||
tag="Statistiken"
|
||||
tagIcon={BarChart3}
|
||||
title="Warum Web Industries Stade"
|
||||
description="Unsere Expertise und Zuverlässigkeit sprechen für sich. Vertrauen Sie auf bewährte Qualität und innovative Lösungen."
|
||||
tag="Unsere Stärken"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{ id: "1", value: "60.000+", title: "Sitzplatzkapazität", items: ["Premium Seatings", "Rollstuhlgerechte Plätze", "VIP-Logen verfügbar"] },
|
||||
{ id: "2", value: "350+", title: "Veranstaltungen pro Jahr", items: ["Internationale Spiele", "Weltklasse-Konzerte", "Unternehmensveranstaltungen"] },
|
||||
{ id: "3", value: "2M+", title: "Jährliche Besucher", items: ["Aus Deutschland", "Aus Europa", "International"] },
|
||||
{ id: "4", value: "98%", title: "Kundenzufriedenheit", items: ["Exzellenter Service", "Premium-Annehmlichkeiten", "Gedenkwerte Erlebnisse"] }
|
||||
{ id: "1", value: "4.6★", title: "Google-Bewertung", items: ["12 authentische Bewertungen", "Zuverlässigkeit & Qualität", "Kundenzufriedenheit"] },
|
||||
{ id: "2", value: "20+", title: "Jahre Erfahrung", items: ["Aerospace-Expertise", "Globale Partnerschaften", "Bewährte Prozesse"] },
|
||||
{ id: "3", value: "ISO 9001", title: "Zertifiziert", items: ["Höchste Standards", "Kontinuierliche Verbesserung", "Compliance gesichert"] },
|
||||
{ id: "4", value: "100%", title: "Kundenretention", items: ["Langfristige Partnerschaften", "Zuverlässiger Service", "Technische Exzellenz"] }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -122,18 +122,18 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
title="Was unsere Besucher sagen"
|
||||
description="Echte Bewertungen von echten Fans und Veranstaltern"
|
||||
title="Das sagen unsere Partner und Kunden"
|
||||
description="Vertrauen Sie auf die Erfahrung führender Unternehmen in der Luft- und Raumfahrtindustrie."
|
||||
tag="Bewertungen"
|
||||
tagIcon={Star}
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{ id: "1", name: "Marcus Fischer", role: "Fußball-Fan", company: "Hamburg United", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-looking-together-football-game-sunny-day_23-2149015499.jpg?_wi=1", imageAlt: "Marcus Fischer" },
|
||||
{ id: "2", name: "Sarah Klein", role: "Event-Managerin", company: "Berlin Events GmbH", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", imageAlt: "Sarah Klein" },
|
||||
{ id: "3", name: "Thomas Müller", role: "Konzertbesucher", company: "Musik-Enthusiast", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-red-headband-smiling-showing-ok-sign-standing-white-wall_141793-56625.jpg", imageAlt: "Thomas Müller" },
|
||||
{ id: "4", name: "Julia Wagner", role: "Veranstaltungskoordinatorin", company: "Premium Events Munich", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-attractive-woman-showing-thumb-up-outdoors_1262-12526.jpg", imageAlt: "Julia Wagner" },
|
||||
{ id: "5", name: "Klaus Schneider", role: "Sportfan", company: "Bayern Sports Club", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/people-looking-together-football-game-sunny-day_23-2149015499.jpg?_wi=2", imageAlt: "Klaus Schneider" },
|
||||
{ id: "6", name: "Anna Schmidt", role: "Corporate Events Manager", company: "Frankfurt Business Solutions", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/woman-showing-ok-sign_23-2148990150.jpg", imageAlt: "Anna Schmidt" }
|
||||
{ id: "1", name: "Lufthansa Technik", role: "Aviation Partner", company: "Hamburg", rating: 5, imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=400&q=80", imageAlt: "Lufthansa Technik" },
|
||||
{ id: "2", name: "Airbus Operations", role: "Major Client", company: "Bremen", rating: 5, imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=400&q=80", imageAlt: "Airbus Operations" },
|
||||
{ id: "3", name: "MTU Aero Engines", role: "Technology Partner", company: "Munich", rating: 5, imageSrc: "https://images.unsplash.com/photo-1581092162562-40038f66c4b8?w=400&q=80", imageAlt: "MTU Aero Engines" },
|
||||
{ id: "4", name: "Rolls-Royce Deutschland", role: "Strategic Partner", company: "Dahlewitz", rating: 5, imageSrc: "https://images.unsplash.com/photo-1581092916550-e323be2ae537?w=400&q=80", imageAlt: "Rolls-Royce Deutschland" },
|
||||
{ id: "5", name: "Bombardier Aviation", role: "Supply Partner", company: "Montreal", rating: 5, imageSrc: "https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=400&q=80", imageAlt: "Bombardier Aviation" },
|
||||
{ id: "6", name: "Leonardo Aerospace", role: "Premium Client", company: "Italy", rating: 5, imageSrc: "https://images.unsplash.com/photo-1581092162562-40038f66c4b8?w=400&q=80", imageAlt: "Leonardo Aerospace" }
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
@@ -144,11 +144,11 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Bereit für ein unvergessliches Erlebnis? Buchen Sie jetzt Ihre Tickets oder kontaktieren Sie uns für Veranstaltungsanfragen. Erleben Sie das Solemio Stadion!"
|
||||
animationType="background-highlight"
|
||||
text="Kontaktieren Sie Web Industries Stade GmbH für hochpräzise Aerospace-Lösungen. Unser erfahrenes Team steht Ihnen zur Verfügung."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Tickets jetzt buchen", href: "https://tickets.solemio-stadion.de" },
|
||||
{ text: "Event anfragen", href: "mailto:events@solemio-stadion.de" }
|
||||
{ text: "Jetzt anrufen", href: "tel:041417976506" },
|
||||
{ text: "E-Mail senden", href: "mailto:info@web-industries-stade.de" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
@@ -157,14 +157,41 @@ export default function LandingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Solemio Stadion"
|
||||
logoText="Web Industries Stade GmbH"
|
||||
columns={[
|
||||
{ title: "Besuchen", items: [{ label: "Tickets", href: "https://tickets.solemio-stadion.de" }, { label: "Einrichtungen", href: "#features" }, { label: "Parken", href: "#" }, { label: "Anfahrt", href: "#" }] },
|
||||
{ title: "Veranstaltungen", items: [{ label: "Fußball", href: "#" }, { label: "Konzerte", href: "#" }, { label: "Corporate Events", href: "#" }, { label: "Kalender", href: "#" }] },
|
||||
{ title: "Unternehmen", items: [{ label: "Über uns", href: "#about" }, { label: "Karrieren", href: "#" }, { label: "Presse", href: "#" }, { label: "Kontakt", href: "#contact" }] },
|
||||
{ title: "Unterstützung", items: [{ label: "FAQ", href: "#" }, { label: "Richtlinien", href: "#" }, { label: "Datenschutz", href: "#" }, { label: "Allgemeine Geschäftsbedingungen", href: "#" }] }
|
||||
{
|
||||
title: "Kontakt", items: [
|
||||
{ label: "Sophie-Scholl-Weg 22a, 21684 Stade", href: "https://maps.google.com/?q=Sophie-Scholl-Weg+22a,+21684+Stade" },
|
||||
{ label: "Telefon: 04141 797650", href: "tel:041417976506" },
|
||||
{ label: "Google (4,6★)", href: "https://maps.google.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Dienstleistungen", items: [
|
||||
{ label: "Composite-Materialien", href: "#features" },
|
||||
{ label: "Präzisionsfertigung", href: "#features" },
|
||||
{ label: "Qualitätskontrolle", href: "#features" },
|
||||
{ label: "Industrielle Lösungen", href: "#features" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Unternehmen", items: [
|
||||
{ label: "Über uns", href: "#about" },
|
||||
{ label: "Expertise", href: "#metrics" },
|
||||
{ label: "Bewertungen", href: "#testimonials" },
|
||||
{ label: "Kontakt", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Rechtliches", items: [
|
||||
{ label: "Datenschutz", href: "/privacy" },
|
||||
{ label: "Impressum", href: "/impressum" },
|
||||
{ label: "AGB", href: "/terms" },
|
||||
{ label: "Cookies", href: "/cookies" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Solemio Stadion GmbH. Alle Rechte vorbehalten."
|
||||
copyrightText="© 2025 Web Industries Stade GmbH. Alle Rechte vorbehalten."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
120
src/app/privacy/page.tsx
Normal file
120
src/app/privacy/page.tsx
Normal file
@@ -0,0 +1,120 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function PrivacyPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Web Industries Stade"
|
||||
navItems={[
|
||||
{ name: "Startseite", id: "/" },
|
||||
{ name: "Über uns", id: "#about" },
|
||||
{ name: "Dienstleistungen", id: "#features" },
|
||||
{ name: "Expertise", id: "#metrics" },
|
||||
{ name: "Bewertungen", id: "#testimonials" }
|
||||
]}
|
||||
button={{ text: "Kontakt aufnehmen", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Datenschutzerklärung"
|
||||
subtitle="Zuletzt aktualisiert: Januar 2025"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Verantwortlicher", content: [
|
||||
{
|
||||
type: "paragraph", text: "Web Industries Stade GmbH, Sophie-Scholl-Weg 22a, 21684 Stade, Deutschland"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Erhobene Daten", content: [
|
||||
{
|
||||
type: "paragraph", text: "Wir erheben folgende Kategorien von persönlichen Daten:"
|
||||
},
|
||||
{
|
||||
type: "list", items: ["Name und Kontaktinformationen", "Unternehmensdetails", "Kommunikationsverlauf", "Technische Daten bei Website-Nutzung"]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Zweck der Datenverarbeitung", content: [
|
||||
{
|
||||
type: "paragraph", text: "Ihre Daten werden verarbeitet für:"
|
||||
},
|
||||
{
|
||||
type: "list", items: ["Beantwortung von Anfragen", "Geschäftsabwicklung", "Website-Betrieb und Verbesserung", "Einhaltung rechtlicher Verpflichtungen"]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Speicherdauer", content: [
|
||||
{
|
||||
type: "paragraph", text: "Personenbezogene Daten werden nur so lange gespeichert, wie dies für die Erfüllung der Verarbeitungszwecke erforderlich ist oder durch Gesetze vorgeschrieben wird."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Ihre Rechte", content: [
|
||||
{
|
||||
type: "paragraph", text: "Sie haben das Recht auf:"
|
||||
},
|
||||
{
|
||||
type: "list", items: ["Auskunft über Ihre Daten", "Berichtigung ungenauer Daten", "Löschung Ihrer Daten", "Einschränkung der Verarbeitung", "Datenportabilität"]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "6. Kontakt", content: [
|
||||
{
|
||||
type: "paragraph", text: "Bei Fragen zu Ihren Daten kontaktieren Sie uns: info@web-industries-stade.de oder 04141 797650"
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Web Industries Stade GmbH"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt", items: [
|
||||
{ label: "Sophie-Scholl-Weg 22a, 21684 Stade", href: "https://maps.google.com/?q=Sophie-Scholl-Weg+22a,+21684+Stade" },
|
||||
{ label: "Telefon: 04141 797650", href: "tel:041417976506" },
|
||||
{ label: "Google (4,6★)", href: "https://maps.google.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Rechtliches", items: [
|
||||
{ label: "Datenschutz", href: "/privacy" },
|
||||
{ label: "Impressum", href: "/impressum" },
|
||||
{ label: "AGB", href: "/terms" },
|
||||
{ label: "Cookies", href: "/cookies" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Web Industries Stade GmbH. Alle Rechte vorbehalten."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #0c1325;;
|
||||
--primary-cta: #0798ff;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #93c7ff;;
|
||||
--background-accent: #a8cde8;; */
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #0f172a;;
|
||||
--primary-cta: #1e3a8a;;
|
||||
--secondary-cta: #e2e8f0;;
|
||||
--accent: #64748b;;
|
||||
--background-accent: #cbd5e1;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #0c1325;;
|
||||
--primary-cta: #0798ff;;
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #0f172a;;
|
||||
--primary-cta: #1e3a8a;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta: #e2e8f0;;
|
||||
--secondary-cta-text: #0c1325;;
|
||||
--accent: #93c7ff;;
|
||||
--background-accent: #a8cde8;;
|
||||
--accent: #64748b;;
|
||||
--background-accent: #cbd5e1;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
128
src/app/terms/page.tsx
Normal file
128
src/app/terms/page.tsx
Normal file
@@ -0,0 +1,128 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function TermsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumLarge"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Web Industries Stade"
|
||||
navItems={[
|
||||
{ name: "Startseite", id: "/" },
|
||||
{ name: "Über uns", id: "#about" },
|
||||
{ name: "Dienstleistungen", id: "#features" },
|
||||
{ name: "Expertise", id: "#metrics" },
|
||||
{ name: "Bewertungen", id: "#testimonials" }
|
||||
]}
|
||||
button={{ text: "Kontakt aufnehmen", href: "#contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Allgemeine Geschäftsbedingungen"
|
||||
subtitle="Zuletzt aktualisiert: Januar 2025"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Geltungsbereich", content: [
|
||||
{
|
||||
type: "paragraph", text: "Diese Allgemeinen Geschäftsbedingungen (AGB) gelten für alle Geschäftstransaktionen zwischen Web Industries Stade GmbH und ihren Kunden."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Vertragsabschluss", content: [
|
||||
{
|
||||
type: "paragraph", text: "Alle Angebote sind freibleibend. Verträge werden erst verbindlich durch schriftliche Bestätigung durch Web Industries Stade GmbH."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Leistungen", content: [
|
||||
{
|
||||
type: "paragraph", text: "Web Industries Stade GmbH führt Leistungen gemäß den vereinbarten Spezifikationen durch. Abweichungen müssen schriftlich vereinbart werden."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Zahlung", content: [
|
||||
{
|
||||
type: "paragraph", text: "Rechnungen sind zahlbar innerhalb von 30 Tagen nach Rechnungsdatum, sofern nicht anders vereinbart."
|
||||
},
|
||||
{
|
||||
type: "list", items: ["Zahlungsweise: Überweisung", "Zahlungsziel: Netto 30 Tage", "Verzugszinsen: 5% p.a. über dem Basiszinssatz"]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Qualitätsgarantie", content: [
|
||||
{
|
||||
type: "paragraph", text: "Alle Produkte und Dienstleistungen werden nach strengsten Qualitätsstandards (ISO 9001) erbracht. Gewährleistung: 12 Monate nach Lieferung."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "6. Haftung", content: [
|
||||
{
|
||||
type: "paragraph", text: "Web Industries Stade GmbH haftet im Rahmen der geltenden Gesetze für Schäden, die durch fahrlässiges oder vorsätzliches Handeln entstehen."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "7. Geheimhaltung", content: [
|
||||
{
|
||||
type: "paragraph", text: "Beide Parteien verpflichten sich zur Vertraulichkeit bezüglich aller im Geschäftsverkehr ausgetauschten Informationen."
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "8. Salvatorische Klausel", content: [
|
||||
{
|
||||
type: "paragraph", text: "Sollte eine Bestimmung dieser AGB ungültig sein, wird die Gültigkeit der übrigen Bestimmungen nicht beeinträchtigt."
|
||||
}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Web Industries Stade GmbH"
|
||||
columns={[
|
||||
{
|
||||
title: "Kontakt", items: [
|
||||
{ label: "Sophie-Scholl-Weg 22a, 21684 Stade", href: "https://maps.google.com/?q=Sophie-Scholl-Weg+22a,+21684+Stade" },
|
||||
{ label: "Telefon: 04141 797650", href: "tel:041417976506" },
|
||||
{ label: "Google (4,6★)", href: "https://maps.google.com" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Rechtliches", items: [
|
||||
{ label: "Datenschutz", href: "/privacy" },
|
||||
{ label: "Impressum", href: "/impressum" },
|
||||
{ label: "AGB", href: "/terms" },
|
||||
{ label: "Cookies", href: "/cookies" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2025 Web Industries Stade GmbH. Alle Rechte vorbehalten."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user