Fix: add language selector, remove footer blog, add sponsored link, expand content, Telegram intro

This commit is contained in:
Kato
2026-09-02 14:02:08 +00:00
parent 3816201bdc
commit 82bb2824d0
+162 -83
View File
@@ -9,13 +9,11 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" /> <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<style> <style>
/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { :root {
--black: #000000; --black: #000000;
--white: #ffffff; --white: #ffffff;
--blue: #1e40af; --blue: #1e40af;
--blue-d: #1e3a8a;
--gray1: #f5f5f5; --gray1: #f5f5f5;
--gray2: #e5e5e5; --gray2: #e5e5e5;
--gray3: #737373; --gray3: #737373;
@@ -33,10 +31,8 @@
a:hover { text-decoration: underline; } a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; } img { max-width: 100%; display: block; }
/* ── Layout ── */ .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
/* ── Header ── */
.header { .header {
border-bottom: 3px double var(--black); border-bottom: 3px double var(--black);
padding: 16px 0; padding: 16px 0;
@@ -45,41 +41,102 @@
.header-inner { .header-inner {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: flex-start; align-items: center;
gap: 24px; gap: 20px;
} }
.brand { .brand {
font-family: 'Playfair Display', serif; font-family: 'Playfair Display', serif;
font-size: 2rem; font-size: 1.8rem;
font-weight: 900; font-weight: 900;
line-height: 1.1; line-height: 1.1;
color: var(--black); color: var(--black);
flex: 1;
} }
.mission { .lang-toggle {
font-size: 1rem; display: flex;
font-weight: 500; gap: 8px;
background: var(--gray1);
padding: 4px;
border: 1px solid var(--black);
}
.lang-btn {
padding: 6px 14px;
font-size: .85rem;
font-weight: 600;
border: none;
background: transparent;
cursor: pointer;
color: var(--gray4); color: var(--gray4);
max-width: 480px; transition: all .2s;
line-height: 1.5; }
.lang-btn.active {
background: var(--black);
color: var(--white);
}
.lang-btn:hover:not(.active) { color: var(--black); }
.mission-section {
background: var(--gray1);
padding: 24px;
margin-bottom: 32px;
border: 2px solid var(--black);
}
.mission-section h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
font-weight: 900;
margin-bottom: 16px;
padding-bottom: 8px;
border-bottom: 2px solid var(--black);
}
.mission-text {
font-size: 1.05rem;
line-height: 1.7;
color: var(--gray4);
margin-bottom: 20px;
}
.topics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
margin-top: 16px;
}
.topic {
padding: 12px;
border: 1px solid var(--gray2);
font-weight: 600;
font-size: .95rem;
}
.topic span { margin-right: 8px; }
.topic.emo-bank { background: #fff8e1; }
.topic.emo-legal { background: #e3f2fd; }
.topic.emo-tax { background: #e8f5e9; }
.disclaimer {
margin-top: 20px;
padding: 12px;
background: #ffebf0;
border: 1px solid var(--black);
font-weight: 600;
} }
/* ── Main Content ── */
.main-grid { .main-grid {
display: grid; display: grid;
grid-template-columns: 1.5fr 1fr; grid-template-columns: 1.2fr 1fr;
gap: 32px; gap: 40px;
} }
/* ── News Column ── */
.news-col h2 { .news-col h2 {
font-family: 'Playfair Display', serif; font-family: 'Playfair Display', serif;
font-size: 2.5rem; font-size: 2.2rem;
font-weight: 900; font-weight: 900;
margin-bottom: 24px; margin-bottom: 24px;
padding-bottom: 12px; padding-bottom: 12px;
border-bottom: 2px solid var(--black); border-bottom: 2px solid var(--black);
} }
.intro-text {
font-size: 1.1rem;
line-height: 1.7;
color: var(--gray4);
margin-bottom: 24px;
}
.news-item { .news-item {
margin-bottom: 32px; margin-bottom: 32px;
padding-bottom: 24px; padding-bottom: 24px;
@@ -87,24 +144,24 @@
} }
.news-item:last-child { border-bottom: none; } .news-item:last-child { border-bottom: none; }
.news-date { .news-date {
font-size: .8rem; font-size: .78rem;
color: var(--gray3); color: var(--gray3);
text-transform: uppercase; text-transform: uppercase;
letter-spacing: .05em; letter-spacing: .05em;
margin-bottom: 8px; margin-bottom: 6px;
} }
.news-item h3 { .news-item h3 {
font-family: 'Playfair Display', serif; font-family: 'Playfair Display', serif;
font-size: 1.5rem; font-size: 1.4rem;
font-weight: 700; font-weight: 700;
margin-bottom: 10px; margin-bottom: 8px;
line-height: 1.2; line-height: 1.2;
} }
.news-item p { .news-item p {
font-size: 1rem; font-size: 1rem;
color: var(--gray4); color: var(--gray4);
line-height: 1.6; line-height: 1.6;
margin-bottom: 12px; margin-bottom: 10px;
} }
.news-tag { .news-tag {
display: inline-block; display: inline-block;
@@ -118,12 +175,7 @@
border-radius: 0; border-radius: 0;
} }
/* ── Sidebar Column ── */ .sidebar-col { position: sticky; top: 20px; height: fit-content; }
.sidebar-col {
position: sticky;
top: 20px;
height: fit-content;
}
.panel { .panel {
background: var(--gray1); background: var(--gray1);
padding: 24px; padding: 24px;
@@ -132,15 +184,13 @@
} }
.panel h3 { .panel h3 {
font-family: 'Playfair Display', serif; font-family: 'Playfair Display', serif;
font-size: 1.4rem; font-size: 1.3rem;
font-weight: 900; font-weight: 900;
margin-bottom: 16px; margin-bottom: 16px;
padding-bottom: 8px; padding-bottom: 8px;
border-bottom: 2px solid var(--black); border-bottom: 2px solid var(--black);
} }
.form-group { .form-group { margin-bottom: 16px; }
margin-bottom: 16px;
}
.form-group label { .form-group label {
display: block; display: block;
font-size: .85rem; font-size: .85rem;
@@ -183,58 +233,89 @@
} }
.btn-outline:hover { background: var(--blue); color: var(--white); } .btn-outline:hover { background: var(--blue); color: var(--white); }
/* ── Footer ── */
.footer { .footer {
margin-top: 64px; margin-top: 64px;
border-top: 3px double var(--black); border-top: 3px double var(--black);
padding-top: 24px; padding-top: 24px;
font-size: .85rem; text-align: center;
font-size: 1rem;
color: var(--gray4); color: var(--gray4);
} }
.footer-links { .footer a { font-weight: 600; }
display: flex; .footer-text { font-size: .95rem; }
gap: 20px;
margin-bottom: 16px;
flex-wrap: wrap;
}
.footer-links a { color: var(--blue); }
.copyright {
text-align: center;
color: var(--gray3);
}
/* ── Responsive ── */ @media (max-width: 900px) {
@media (max-width: 768px) {
.brand { font-size: 1.5rem; }
.mission { display: none; }
.main-grid { grid-template-columns: 1fr; } .main-grid { grid-template-columns: 1fr; }
.sidebar-col { position: static; } .sidebar-col { position: static; }
.topics-grid { grid-template-columns: 1fr; }
} }
</style> </style>
</head> </head>
<body> <body data-lang="de">
<!-- Header --> <!-- Header -->
<header class="header"> <header class="header">
<div class="container header-inner"> <div class="container header-inner">
<div class="brand">Paraguay SRL LLC</div> <div class="brand">Paraguay SRL LLC</div>
<div class="mission"> <div class="lang-toggle">
<span class="hide-de">Deutsche / Amerikaner in Paraguay tauschen Erfahrungen zu Banken, Steuern, Recht für LLC/SRL.</span> <button class="lang-btn active" data-lang="de">DE</button>
<span class="hide-en">German / American expats in Paraguay share experiences on banking, taxes, legal matters for LLC/SRL.</span> <button class="lang-btn" data-lang="en">EN</button>
</div> </div>
</div> </div>
</header> </header>
<!-- Mission / Introduction -->
<section class="mission-section">
<h2 class="hide-de">Paraguay LLC & SRL Austausch & Community</h2>
<h2 class="hide-en">Paraguay LLC & SRL Exchange & Community</h2>
<p class="mission-text hide-de">
Willkommen in der Gruppe Paraguay LLC & SRL!<br>
Diese Gruppe dient dem Austausch von Menschen, die in Paraguay eine LLC oder SRL betreiben oder sich damit beschäftigen.
</p>
<p class="mission-text hide-en">
Welcome to the Paraguay LLC & SRL group!<br>
This group serves as an exchange platform for people who run or are engaged with an LLC or SRL in Paraguay.
</p>
<div class="topics-grid">
<div class="topic emo-bank">
<span>🏦</span><span class="hide-de">Banken & Zahlungsverkehr</span><span class="hide-en">Banking & Payments</span>
</div>
<div class="topic emo-legal">
<span>⚖️</span><span class="hide-de">Rechtliches & Gesellschaftsrecht</span><span class="hide-en">Legal & Corporate Law</span>
</div>
<div class="topic emo-tax">
<span>💰</span><span class="hide-de">Steuern & Buchhaltung</span><span class="hide-en">Taxes & Accounting</span>
</div>
</div>
<div class="disclaimer hide-de">
🚫 Keine Geschäftsanbahnungen in der Gruppe! Werbung, Akquise und Vermittlungsangebote bitte außerhalb der Gruppe bzw. offline.
</div>
<div class="disclaimer hide-en">
🚫 No business solicitations in the group! Advertising, lead generation, and referral offers outside the group or offline.
</div>
</section>
<!-- Main Content --> <!-- Main Content -->
<main class="container"> <main class="container">
<div class="main-grid"> <div class="main-grid">
<!-- News Column --> <!-- News/Updates Column -->
<div class="news-col"> <div class="news-col">
<h2 class="hide-de">Aktuelle Erfahrungsbereichte</h2> <h2 class="hide-de">Aktuelle Erfahrungsbereichte</h2>
<h2 class="hide-en">Latest Experience Reports</h2> <h2 class="hide-en">Latest Experience Reports</h2>
<p class="intro-text hide-de">
Hier findest du die neuesten Erfahrungsberichte aus unserer Telegram-Gruppe zu Banking, Steuern, Recht und mehr.
</p>
<p class="intro-text hide-en">
Here you'll find the latest experience reports from our Telegram group on banking, taxes, legal matters, and more.
</p>
<article class="news-item"> <article class="news-item">
<div class="news-date">02.09.2026</div> <div class="news-date hide-de">02.09.2026</div>
<div class="news-date hide-en">Sep 02, 2026</div>
<h3 class="hide-de">Neue Bankpartner: Banco Atlántida & BISA</h3> <h3 class="hide-de">Neue Bankpartner: Banco Atlántida & BISA</h3>
<h3 class="hide-en">New Banking Partners: Banco Atlántida & BISA</h3> <h3 class="hide-en">New Banking Partners: Banco Atlántida & BISA</h3>
<p class="hide-de">Wir haben zwei neue Banken in unserer Community-Liste hinzugefügt: Banco Atlántida und Banco BISA. Erfahre mehr über die Anforderungen für Nicht-Residenten in unserem Wiki.</p> <p class="hide-de">Wir haben zwei neue Banken in unserer Community-Liste hinzugefügt: Banco Atlántida und Banco BISA. Erfahre mehr über die Anforderungen für Nicht-Residenten in unserem Wiki.</p>
@@ -243,31 +324,24 @@
</article> </article>
<article class="news-item"> <article class="news-item">
<div class="news-date">28.08.2026</div> <div class="news-date hide-de">28.08.2026</div>
<div class="news-date hide-en">Aug 28, 2026</div>
<h3 class="hide-de">Steuersatz bleibt unverändert 2026</h3> <h3 class="hide-de">Steuersatz bleibt unverändert 2026</h3>
<h3 class="hide-en">Tax Rate Unchanged for 2026</h3> <h3 class="hide-en">Tax Rate Unchanged for 2026</h3>
<p class="hide-de">Paraguay behält seinen Territorialsteuersatz bei — 10% für lokales Einkommen, 0% für ausländisches Einkommen. Die aktuelle Debatte im Kongress betrifft nur die Einfuhrsteuern.</p> <p class="hide-de">Paraguay behält seinen Territorialsteuersatz bei — 10% für lokales Einkommen, 0% für ausländisches Einkommen.</p>
<p class="hide-en">Paraguay maintains its territorial tax rate — 10% for local income, 0% for foreign income. Current congressional debate only affects import tariffs.</p> <p class="hide-en">Paraguay maintains its territorial tax rate — 10% for local income, 0% for foreign income.</p>
<span class="news-tag hide-de">Steuern</span><span class="news-tag hide-en">Taxes</span> <span class="news-tag hide-de">Steuern</span><span class="news-tag hide-en">Taxes</span>
</article> </article>
<article class="news-item"> <article class="news-item">
<div class="news-date">15.08.2026</div> <div class="news-date hide-de">15.08.2026</div>
<div class="news-date hide-en">Aug 15, 2026</div>
<h3 class="hide-de">SRL-Checklist-Guide aktualisiert</h3> <h3 class="hide-de">SRL-Checklist-Guide aktualisiert</h3>
<h3 class="hide-en">SRL Checklist Guide Updated</h3> <h3 class="hide-en">SRL Checklist Guide Updated</h3>
<p class="hide-de">Unsere Community-Mitglieder haben eine detaillierte Checklist für die SRL-Gründung erstellt — von der Notariatsbevollmächtigung bis zur RUC-Registrierung.</p> <p class="hide-de">Unsere Community-Mitglieder haben eine detaillierte Checklist für die SRL-Gründung erstellt.</p>
<p class="hide-en">Our community members created a detailed SRL formation checklist — from notary power of attorney to RUC registration.</p> <p class="hide-en">Our community members created a detailed SRL formation checklist.</p>
<span class="news-tag hide-de">Gründung</span><span class="news-tag hide-en">Formation</span> <span class="news-tag hide-de">Gründung</span><span class="news-tag hide-en">Formation</span>
</article> </article>
<article class="news-item">
<div class="news-date">10.08.2026</div>
<h3 class="hide-de">Banking: Erfahrungen mit fintech Lösungen</h3>
<h3 class="hide-en">Banking: Experiences with fintech solutions</h3>
<p class="hide-de">Mehrere Mitglieder haben erfolgreich Konten bei Wise Business, Payoneer und Mercury geöffnet. Unser Wiki enthält aktuelle Erfahrungsberichte.</p>
<p class="hide-en">Several members have successfully opened accounts with Wise Business, Payoneer, and Mercury. Our wiki contains current experience reports.</p>
<span class="news-tag hide-de">Banking</span><span class="news-tag hide-en">Banking</span>
</article>
</div> </div>
<!-- Sidebar: Login/Signup --> <!-- Sidebar: Login/Signup -->
@@ -299,18 +373,23 @@
<!-- Footer --> <!-- Footer -->
<footer class="footer"> <footer class="footer">
<div class="container"> <div class="container">
<div class="footer-links"> <p class="footer-text">
<a href="#" class="hide-de">Impressum</a> <span class="hide-de">Sponsored by</span>
<a href="#" class="hide-en">Imprint</a> <span class="hide-en">Sponsored by</span>
<a href="#" class="hide-de">Datenschutz</a> <a href="https://ODOO4projects.com" target="_blank" rel="noopener">ODOO4projects</a>
<a href="#" class="hide-en">Privacy</a> </p>
<a href="#" class="hide-de">Kontakt</a>
<a href="#" class="hide-en">Contact</a>
</div>
<p class="copyright hide-de">© 2026 Paraguay SRL LLC Community</p>
<p class="copyright hide-en">© 2026 Paraguay SRL LLC Community</p>
</div> </div>
</footer> </footer>
<script>
document.querySelectorAll('.lang-btn').forEach(btn => {
btn.addEventListener('click', () => {
const lang = btn.dataset.lang;
document.body.dataset.lang = lang;
document.querySelectorAll('.lang-btn').forEach(b => b.classList.remove('active'));
btn.classList.add('active');
});
});
</script>
</body> </body>
</html> </html>