Compare commits
1 Commits
main
...
palette-sk
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ef6238d2d6 |
@@ -3,7 +3,7 @@ import { BrowserRouter, Routes, Route } from 'react-router-dom';
|
|||||||
import { LanguageProvider } from './i18n';
|
import { LanguageProvider } from './i18n';
|
||||||
import { Navbar, Footer, FancyCursor, ScrollToTop } from './components/layout';
|
import { Navbar, Footer, FancyCursor, ScrollToTop } from './components/layout';
|
||||||
import { Home } from './pages/Home';
|
import { Home } from './pages/Home';
|
||||||
import { PageLoader } from './components/ui';
|
import { PageLoader, SkipLink } from './components/ui';
|
||||||
import './styles/global.css';
|
import './styles/global.css';
|
||||||
|
|
||||||
// Lazy load pages to reduce initial bundle size.
|
// Lazy load pages to reduce initial bundle size.
|
||||||
@@ -15,6 +15,7 @@ export function App() {
|
|||||||
return (
|
return (
|
||||||
<LanguageProvider>
|
<LanguageProvider>
|
||||||
<BrowserRouter>
|
<BrowserRouter>
|
||||||
|
<SkipLink />
|
||||||
<ScrollToTop />
|
<ScrollToTop />
|
||||||
<FancyCursor />
|
<FancyCursor />
|
||||||
<Navbar />
|
<Navbar />
|
||||||
|
|||||||
26
src/components/ui/SkipLink.module.css
Normal file
26
src/components/ui/SkipLink.module.css
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
.skipLink {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 50%;
|
||||||
|
z-index: 1000;
|
||||||
|
transform: translateY(-100%) translateX(-50%);
|
||||||
|
padding: var(--space-sm) var(--space-md);
|
||||||
|
background-color: var(--md-sys-color-primary-container);
|
||||||
|
color: var(--md-sys-color-on-primary-container);
|
||||||
|
font-family: var(--md-sys-typescale-body-font);
|
||||||
|
font-weight: 600;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 0 0 var(--radius-md) var(--radius-md);
|
||||||
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
|
||||||
|
transition: transform var(--transition-fast);
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skipLink:focus {
|
||||||
|
transform: translateY(0) translateX(-50%);
|
||||||
|
opacity: 1;
|
||||||
|
pointer-events: auto;
|
||||||
|
outline: 2px solid var(--md-sys-color-primary);
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
12
src/components/ui/SkipLink.tsx
Normal file
12
src/components/ui/SkipLink.tsx
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
import { useTranslation } from '../../i18n';
|
||||||
|
import styles from './SkipLink.module.css';
|
||||||
|
|
||||||
|
export function SkipLink() {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<a href="#main-content" className={styles.skipLink}>
|
||||||
|
{t.nav.skipToContent}
|
||||||
|
</a>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -2,3 +2,4 @@ export { Button } from './Button';
|
|||||||
export { Card } from './Card';
|
export { Card } from './Card';
|
||||||
export { Input, Textarea } from './Input';
|
export { Input, Textarea } from './Input';
|
||||||
export { PageLoader } from './PageLoader';
|
export { PageLoader } from './PageLoader';
|
||||||
|
export { SkipLink } from './SkipLink';
|
||||||
|
|||||||
155
src/i18n/de.ts
155
src/i18n/de.ts
@@ -1,135 +1,118 @@
|
|||||||
export const de = {
|
export const de = {
|
||||||
// Navigation
|
// Navigation
|
||||||
nav: {
|
nav: {
|
||||||
home: "Startseite",
|
skipToContent: 'Zum Hauptinhalt springen',
|
||||||
about: "Über mich",
|
home: 'Startseite',
|
||||||
contact: "Kontakt",
|
about: 'Über uns',
|
||||||
|
contact: 'Kontakt',
|
||||||
},
|
},
|
||||||
|
|
||||||
// Hero Section
|
// Hero Section
|
||||||
hero: {
|
hero: {
|
||||||
greeting: "Willkommen bei",
|
greeting: 'Willkommen bei',
|
||||||
company: "Ragusa IT-Consulting",
|
company: 'Ragusa IT-Consulting',
|
||||||
tagline: "Websites, die",
|
tagline: 'Ihr Partner für',
|
||||||
rotatingWords: [
|
rotatingWords: ['Webentwicklung', 'IT-Support', 'Digitale Lösungen', 'Tech-Beratung'],
|
||||||
"Anfragen bringen",
|
cta: 'Projekt starten',
|
||||||
"Kunden überzeugen",
|
ctaSecondary: 'Mehr erfahren',
|
||||||
"messbar performen",
|
scroll: 'Scrollen',
|
||||||
"Ihr Business stärken",
|
|
||||||
],
|
|
||||||
cta: "Kostenloses Erstgespräch",
|
|
||||||
ctaSecondary: "Warum Ragusa IT?",
|
|
||||||
scroll: "Scrollen",
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// Services
|
// Services
|
||||||
services: {
|
services: {
|
||||||
title: "Leistungen mit Ergebnisfokus",
|
title: 'Unsere Leistungen',
|
||||||
subtitle:
|
subtitle: 'Professionelle IT-Lösungen für Ihr Unternehmen',
|
||||||
"Konkrete IT-Lösungen, die Zeit sparen und neue Anfragen ermöglichen",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
title: "Webentwicklung",
|
title: 'Webentwicklung',
|
||||||
description:
|
description: 'Moderne, responsive Websites und Web-Applikationen mit React, TypeScript und aktuellen Technologien.',
|
||||||
"Conversion-orientierte Websites und Web-Apps, die Vertrauen schaffen und qualifizierte Leads generieren.",
|
icon: 'code',
|
||||||
icon: "code",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Tech-Support",
|
title: 'Tech-Support',
|
||||||
description:
|
description: 'Schnelle und zuverlässige technische Unterstützung für Hardware und Software vor Ort.',
|
||||||
"Schnelle Hilfe bei akuten Problemen, damit Ihr Betrieb ohne lange Ausfälle weiterläuft.",
|
icon: 'support',
|
||||||
icon: "support",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "IT-Beratung",
|
title: 'IT-Beratung',
|
||||||
description:
|
description: 'Strategische Beratung für Ihre IT-Infrastruktur und digitale Transformation.',
|
||||||
"Praxisnahe Entscheidungen für Infrastruktur, Tools und Prozesse – passend zu Ihrem Budget.",
|
icon: 'consulting',
|
||||||
icon: "consulting",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Hosting & Wartung",
|
title: 'Hosting & Wartung',
|
||||||
description:
|
description: 'Zuverlässiges Webhosting, regelmäßige Updates und proaktive Wartung Ihrer Systeme.',
|
||||||
"Stabile Betreuung mit Updates, Monitoring und klaren Verantwortlichkeiten für Ihre Webpräsenz.",
|
icon: 'hosting',
|
||||||
icon: "hosting",
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
// About
|
// About
|
||||||
about: {
|
about: {
|
||||||
title: "Über mich",
|
title: 'Über uns',
|
||||||
subtitle: "Ihr persönlicher IT-Partner",
|
subtitle: 'Ihr lokaler IT-Partner',
|
||||||
intro:
|
intro: 'Ragusa IT-Consulting bietet professionelle IT-Dienstleistungen mit persönlichem Service. Wir kombinieren technische Expertise mit einem tiefen Verständnis für die Bedürfnisse unserer Kunden.',
|
||||||
"Ich bin Melvin Ragusa und unterstütze als Einzelunternehmer Unternehmen und Selbstständige mit persönlichem IT-Service. Mein Fokus: klare Lösungen statt unnötiger Komplexität.",
|
experience: 'Mit jahrelanger Erfahrung in der Webentwicklung und IT-Beratung unterstützen wir Unternehmen und Privatpersonen dabei, ihre technischen Herausforderungen zu meistern.',
|
||||||
experience:
|
|
||||||
"Mit Erfahrung in Webentwicklung und IT-Beratung helfe ich dabei, technische Herausforderungen schnell und pragmatisch zu lösen.",
|
|
||||||
skills: {
|
skills: {
|
||||||
title: "Technologien",
|
title: 'Technologien',
|
||||||
subtitle: "Moderne Tools für moderne Lösungen",
|
subtitle: 'Moderne Tools für moderne Lösungen',
|
||||||
},
|
},
|
||||||
values: {
|
values: {
|
||||||
title: "Warum mit mir arbeiten?",
|
title: 'Warum Ragusa IT?',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
title: "Direkter Kontakt",
|
title: 'Persönlicher Service',
|
||||||
description:
|
description: 'Direkter Ansprechpartner für alle Ihre IT-Anliegen.',
|
||||||
"Sie sprechen immer direkt mit mir – ohne Umwege oder wechselnde Ansprechpartner.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Nahbar & vor Ort",
|
title: 'Lokale Präsenz',
|
||||||
description:
|
description: 'Vor-Ort-Support und persönliche Beratungsgespräche.',
|
||||||
"Ich bin lokal erreichbar und begleite Sie auf Wunsch auch persönlich vor Ort.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Faire, klare Preise",
|
title: 'Faire Preise',
|
||||||
description:
|
description: 'Transparente Preisgestaltung ohne versteckte Kosten.',
|
||||||
"Ich arbeite mit transparenter Preisstruktur – ohne versteckte Zusatzkosten.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Schnelle Rückmeldung",
|
title: 'Schnelle Reaktion',
|
||||||
description:
|
description: 'Kurze Reaktionszeiten bei Anfragen und Problemen.',
|
||||||
"Ich antworte zeitnah auf Anfragen und kümmere mich pragmatisch um Probleme.",
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Contact
|
// Contact
|
||||||
contact: {
|
contact: {
|
||||||
title: "Kontakt",
|
title: 'Kontakt',
|
||||||
subtitle: "Lassen Sie uns zusammenarbeiten",
|
subtitle: 'Lassen Sie uns zusammenarbeiten',
|
||||||
intro:
|
intro: 'Haben Sie ein Projekt im Sinn oder benötigen Sie technische Unterstützung? Ich freue mich auf Ihre Nachricht!',
|
||||||
"Beschreiben Sie kurz Ihr Projekt oder Problem – ich melde mich schnell mit einer konkreten Einschätzung und nächstem Schritt.",
|
|
||||||
form: {
|
form: {
|
||||||
name: "Name",
|
name: 'Name',
|
||||||
namePlaceholder: "Ihr Name",
|
namePlaceholder: 'Ihr Name',
|
||||||
email: "E-Mail",
|
email: 'E-Mail',
|
||||||
emailPlaceholder: "ihre@email.de",
|
emailPlaceholder: 'ihre@email.de',
|
||||||
subject: "Betreff",
|
subject: 'Betreff',
|
||||||
subjectPlaceholder: "Worum geht es?",
|
subjectPlaceholder: 'Worum geht es?',
|
||||||
message: "Nachricht",
|
message: 'Nachricht',
|
||||||
messagePlaceholder: "Ihre Nachricht...",
|
messagePlaceholder: 'Ihre Nachricht...',
|
||||||
submit: "Nachricht senden",
|
submit: 'Nachricht senden',
|
||||||
sending: "Wird gesendet...",
|
sending: 'Wird gesendet...',
|
||||||
success: "Nachricht erfolgreich gesendet! Ich melde mich bald bei Ihnen.",
|
success: 'Nachricht erfolgreich gesendet! Ich melde mich bald bei Ihnen.',
|
||||||
error:
|
error: 'Fehler beim Senden. Bitte versuchen Sie es erneut oder kontaktieren Sie mich direkt.',
|
||||||
"Fehler beim Senden. Bitte versuchen Sie es erneut oder kontaktieren Sie mich direkt.",
|
rateLimit: 'Zu viele Anfragen. Bitte warten Sie einen Moment.',
|
||||||
rateLimit: "Zu viele Anfragen. Bitte warten Sie einen Moment.",
|
|
||||||
},
|
},
|
||||||
info: {
|
info: {
|
||||||
title: "Kontaktdaten",
|
title: 'Kontaktdaten',
|
||||||
email: "E-Mail",
|
email: 'E-Mail',
|
||||||
location: "Standort",
|
location: 'Standort',
|
||||||
github: "GitHub",
|
github: 'GitHub',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Footer
|
// Footer
|
||||||
footer: {
|
footer: {
|
||||||
copyright: "© {year} Ragusa IT-Consulting. Alle Rechte vorbehalten.",
|
copyright: '© {year} Ragusa IT-Consulting. Alle Rechte vorbehalten.',
|
||||||
madeIn: "Entwickelt in Deutschland mit",
|
madeIn: 'Entwickelt in Deutschland mit',
|
||||||
love: "Liebe",
|
love: 'Liebe',
|
||||||
impressum: "Impressum",
|
impressum: 'Impressum',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
156
src/i18n/en.ts
156
src/i18n/en.ts
@@ -1,135 +1,119 @@
|
|||||||
import type { Translations } from "./de";
|
import type { Translations } from './de';
|
||||||
|
|
||||||
export const en: Translations = {
|
export const en: Translations = {
|
||||||
// Navigation
|
// Navigation
|
||||||
nav: {
|
nav: {
|
||||||
home: "Home",
|
skipToContent: 'Skip to main content',
|
||||||
about: "About Me",
|
home: 'Home',
|
||||||
contact: "Contact",
|
about: 'About',
|
||||||
|
contact: 'Contact',
|
||||||
},
|
},
|
||||||
|
|
||||||
// Hero Section
|
// Hero Section
|
||||||
hero: {
|
hero: {
|
||||||
greeting: "Welcome to",
|
greeting: 'Welcome to',
|
||||||
company: "Ragusa IT-Consulting",
|
company: 'Ragusa IT-Consulting',
|
||||||
tagline: "Websites that",
|
tagline: 'Your partner for',
|
||||||
rotatingWords: [
|
rotatingWords: ['Web Development', 'IT Support', 'Digital Solutions', 'Tech Consulting'],
|
||||||
"generate leads",
|
cta: 'Start Project',
|
||||||
"convert visitors",
|
ctaSecondary: 'Learn More',
|
||||||
"perform measurably",
|
scroll: 'Scroll',
|
||||||
"support your growth",
|
|
||||||
],
|
|
||||||
cta: "Book a Free Discovery Call",
|
|
||||||
ctaSecondary: "Why Ragusa IT?",
|
|
||||||
scroll: "Scroll",
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// Services
|
// Services
|
||||||
services: {
|
services: {
|
||||||
title: "Services Built for Outcomes",
|
title: 'Our Services',
|
||||||
subtitle:
|
subtitle: 'Professional IT solutions for your business',
|
||||||
"Practical IT solutions that save time and help you win new clients",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
title: "Web Development",
|
title: 'Web Development',
|
||||||
description:
|
description: 'Modern, responsive websites and web applications built with React, TypeScript, and cutting-edge technologies.',
|
||||||
"Conversion-focused websites and web apps that build trust and generate qualified leads.",
|
icon: 'code',
|
||||||
icon: "code",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Tech Support",
|
title: 'Tech Support',
|
||||||
description:
|
description: 'Fast and reliable technical support for hardware and software, available on-site.',
|
||||||
"Fast help for critical issues so your day-to-day operations keep running smoothly.",
|
icon: 'support',
|
||||||
icon: "support",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "IT Consulting",
|
title: 'IT Consulting',
|
||||||
description:
|
description: 'Strategic consulting for your IT infrastructure and digital transformation.',
|
||||||
"Hands-on guidance for infrastructure, tools, and processes aligned with your budget.",
|
icon: 'consulting',
|
||||||
icon: "consulting",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Hosting & Maintenance",
|
title: 'Hosting & Maintenance',
|
||||||
description:
|
description: 'Reliable web hosting, regular updates, and proactive maintenance of your systems.',
|
||||||
"Reliable care with updates, monitoring, and clear ownership for your online presence.",
|
icon: 'hosting',
|
||||||
icon: "hosting",
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
// About
|
// About
|
||||||
about: {
|
about: {
|
||||||
title: "About Me",
|
title: 'About Us',
|
||||||
subtitle: "Your personal IT partner",
|
subtitle: 'Your local IT partner',
|
||||||
intro:
|
intro: 'Ragusa IT-Consulting provides professional IT services with a personal touch. We combine technical expertise with a deep understanding of our clients\' needs.',
|
||||||
"I'm Melvin Ragusa, and I run Ragusa IT-Consulting as a solo business. I help companies and freelancers with hands-on IT support and web solutions — focused on clear, practical outcomes.",
|
experience: 'With years of experience in web development and IT consulting, we help businesses and individuals overcome their technical challenges.',
|
||||||
experience:
|
|
||||||
"With experience in web development and IT consulting, I help businesses and individuals solve technical challenges quickly and pragmatically.",
|
|
||||||
skills: {
|
skills: {
|
||||||
title: "Technologies",
|
title: 'Technologies',
|
||||||
subtitle: "Modern tools for modern solutions",
|
subtitle: 'Modern tools for modern solutions',
|
||||||
},
|
},
|
||||||
values: {
|
values: {
|
||||||
title: "Why work with me?",
|
title: 'Why Ragusa IT?',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
title: "Direct Contact",
|
title: 'Personal Service',
|
||||||
description:
|
description: 'Direct point of contact for all your IT needs.',
|
||||||
"You always work directly with me — no handoffs and no changing points of contact.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Local & Accessible",
|
title: 'Local Presence',
|
||||||
description:
|
description: 'On-site support and in-person consultations.',
|
||||||
"I am locally available and can support you on-site when needed.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Fair, Clear Pricing",
|
title: 'Fair Pricing',
|
||||||
description:
|
description: 'Transparent pricing with no hidden costs.',
|
||||||
"I work with transparent pricing and no hidden extra fees.",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Fast Response",
|
title: 'Quick Response',
|
||||||
description:
|
description: 'Short response times for inquiries and issues.',
|
||||||
"I reply quickly and handle issues in a practical, no-nonsense way.",
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Contact
|
// Contact
|
||||||
contact: {
|
contact: {
|
||||||
title: "Contact",
|
title: 'Contact',
|
||||||
subtitle: "Let's work together",
|
subtitle: 'Let\'s work together',
|
||||||
intro:
|
intro: 'Have a project in mind or need technical support? I look forward to hearing from you!',
|
||||||
"Share your project or issue briefly — I'll reply quickly with a concrete assessment and recommended next action.",
|
|
||||||
form: {
|
form: {
|
||||||
name: "Name",
|
name: 'Name',
|
||||||
namePlaceholder: "Your name",
|
namePlaceholder: 'Your name',
|
||||||
email: "Email",
|
email: 'Email',
|
||||||
emailPlaceholder: "your@email.com",
|
emailPlaceholder: 'your@email.com',
|
||||||
subject: "Subject",
|
subject: 'Subject',
|
||||||
subjectPlaceholder: "What is it about?",
|
subjectPlaceholder: 'What is it about?',
|
||||||
message: "Message",
|
message: 'Message',
|
||||||
messagePlaceholder: "Your message...",
|
messagePlaceholder: 'Your message...',
|
||||||
submit: "Send Message",
|
submit: 'Send Message',
|
||||||
sending: "Sending...",
|
sending: 'Sending...',
|
||||||
success: "Message sent successfully! I'll get back to you soon.",
|
success: 'Message sent successfully! I\'ll get back to you soon.',
|
||||||
error: "Error sending message. Please try again or contact me directly.",
|
error: 'Error sending message. Please try again or contact me directly.',
|
||||||
rateLimit: "Too many requests. Please wait a moment.",
|
rateLimit: 'Too many requests. Please wait a moment.',
|
||||||
},
|
},
|
||||||
info: {
|
info: {
|
||||||
title: "Contact Info",
|
title: 'Contact Info',
|
||||||
email: "Email",
|
email: 'Email',
|
||||||
location: "Location",
|
location: 'Location',
|
||||||
github: "GitHub",
|
github: 'GitHub',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// Footer
|
// Footer
|
||||||
footer: {
|
footer: {
|
||||||
copyright: "© {year} Ragusa IT-Consulting. All rights reserved.",
|
copyright: '© {year} Ragusa IT-Consulting. All rights reserved.',
|
||||||
madeIn: "Made in Germany with",
|
madeIn: 'Made in Germany with',
|
||||||
love: "love",
|
love: 'love',
|
||||||
impressum: "Imprint",
|
impressum: 'Imprint',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ export function About() {
|
|||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main className={styles.about} key={location.key}>
|
<main id="main-content" tabIndex={-1} className={styles.about} key={location.key}>
|
||||||
{/* Hero Section */}
|
{/* Hero Section */}
|
||||||
<section className={styles.hero}>
|
<section className={styles.hero}>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ export function Contact() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main className={styles.contact}>
|
<main id="main-content" tabIndex={-1} className={styles.contact}>
|
||||||
{/* Hero */}
|
{/* Hero */}
|
||||||
<section className={styles.hero}>
|
<section className={styles.hero}>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { Hero, Services } from '../components/sections';
|
|||||||
|
|
||||||
export function Home() {
|
export function Home() {
|
||||||
return (
|
return (
|
||||||
<main>
|
<main id="main-content" tabIndex={-1}>
|
||||||
<Hero />
|
<Hero />
|
||||||
<Services />
|
<Services />
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
Reference in New Issue
Block a user