Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/web/components/CTA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const CTA = memo(function CTA() {
href="https://discord.com/oauth2/authorize?client_id=1368201272624287754&permissions=1669118160151&integration_type=0&scope=bot"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-3 px-10 py-4.5 rounded-2xl bg-primary text-white font-black text-lg shadow-2xl shadow-primary/40 border border-white/10"
className="btn-primary inline-flex items-center gap-3"
>
<span>Bot einladen</span>
<ArrowRight className="w-5 h-5" />
Expand Down
1 change: 1 addition & 0 deletions src/web/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ export const Footer = memo(function Footer() {
<span className="text-[10px] font-bold uppercase tracking-[0.3em] text-primary mb-2">Rechtliches</span>
<Link to="/legal/privacy" className="text-sm text-muted-foreground hover:text-foreground transition-colors font-medium">Datenschutz</Link>
<Link to="/legal/imprint" className="text-sm text-muted-foreground hover:text-foreground transition-colors font-medium">Impressum</Link>
<Link to="/legal/terms" className="text-sm text-muted-foreground hover:text-foreground transition-colors font-medium">Nutzungsbedingungen</Link>
<Link to="/legal/license" className="text-sm text-muted-foreground hover:text-foreground transition-colors font-medium">Lizenz (GPL-3.0)</Link>
</div>

Expand Down
6 changes: 3 additions & 3 deletions src/web/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,16 @@ export const Hero = memo(function Hero() {
href="https://discord.com/oauth2/authorize?client_id=1368201272624287754&permissions=1669118160151&integration_type=0&scope=bot"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center gap-3 px-10 py-4.5 rounded-2xl bg-primary text-white font-bold text-lg shadow-xl shadow-primary/30 hover:shadow-primary/50 transition-all border border-white/10"
className="btn-primary inline-flex items-center gap-3"
>
<span>Bot einladen</span>
<ArrowRight className="w-5 h-5" />
</motion.a>
<motion.a
whileHover={{ scale: 1.02, backgroundColor: "rgba(255,255,255,0.05)" }}
whileHover={{ scale: 1.02 }}
whileTap={{ scale: 0.98 }}
href="#features"
className="inline-flex items-center gap-2 px-10 py-4.5 rounded-2xl glass border border-white/10 font-bold text-lg text-white transition-all shadow-lg"
className="inline-flex items-center gap-2 px-10 py-4.5 rounded-2xl glass border border-white/10 font-bold text-lg text-white shadow-lg"
>
Features entdecken
</motion.a>
Expand Down
2 changes: 1 addition & 1 deletion src/web/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export function Navbar() {
href="https://discord.com/oauth2/authorize?client_id=1368201272624287754&permissions=1669118160151&integration_type=0&scope=bot"
target="_blank"
rel="noopener noreferrer"
className="group inline-flex items-center gap-2.5 px-6 py-2.5 rounded-xl bg-primary text-white font-bold text-sm tracking-tight relative overflow-hidden shadow-lg shadow-primary/20"
className="btn-primary inline-flex items-center gap-2.5 !px-6 !py-2.5 !text-sm"
>
<Sparkles className="w-4 h-4" />
<span>Bot einladen</span>
Expand Down
4 changes: 2 additions & 2 deletions src/web/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
--popover-foreground: 0 0% 98%;

--primary: 0 84% 55%;
--primary-foreground: 0 0% 0%;
--primary-foreground: 0 0% 100%;

--secondary: 240 6% 10%;
--secondary-foreground: 0 0% 98%;
Expand Down Expand Up @@ -552,7 +552,7 @@
@utility btn-primary {
@apply px-8 py-4 rounded-2xl font-bold transition-all duration-300;
background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
color: white;
color: white !important;
box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.5);

&:hover {
Expand Down