feat(release): prepare 1.1.0 candidate

This commit is contained in:
Yun Chan 2026-08-29 18:33:45 +09:00
parent 5a34f66981
commit 5205dcdfa9
736 changed files with 115667 additions and 12203 deletions

View file

@ -11,35 +11,35 @@ export function Footer() {
const { t } = useI18n()
return (
<footer className="border-t border-white/[0.04] py-12 md:py-16">
<footer className="border-t border-white/10 py-12 md:py-16 bg-surface-950/80">
<Container>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 mb-10">
{/* Left: brand */}
<div>
<div className="flex items-center gap-2 mb-3">
<Led color="amber" size="sm" />
<span className="font-mono text-sm font-semibold tracking-tight text-neutral-300">
D3RO&middot;VOICE
<div className="flex items-center gap-2 mb-2.5">
<Led color="blue" size="sm" />
<span className="text-base font-medium tracking-tight text-white">
D3RO<span className="text-brand-blue font-medium">&middot;</span>VOICE
</span>
</div>
<p className="text-sm text-neutral-500 leading-relaxed max-w-sm">
<p className="text-sm text-neutral-400 leading-relaxed max-w-sm font-normal">
{t.footer.description}
</p>
</div>
{/* Right: links */}
<div className="flex flex-wrap gap-x-8 gap-y-3 md:justify-end">
<a href="https://github.com/user/D3ROVoice" className="font-mono text-nano uppercase tracking-widest text-neutral-500 hover:text-neutral-300 transition-colors flex items-center gap-1.5">
<div className="flex flex-wrap gap-x-7 gap-y-2.5 md:justify-end items-center">
<a href="https://git.chanpaca.net/yunchan/d3ro-voice" target="_blank" rel="noreferrer" className="text-xs text-neutral-400 hover:text-brand-blue transition-colors font-medium flex items-center gap-1.5">
<GithubIcon />
GitHub
Repository
</a>
<a href="#features" className="font-mono text-nano uppercase tracking-widest text-neutral-500 hover:text-neutral-300 transition-colors">
<a href="#features" className="text-xs text-neutral-400 hover:text-brand-blue transition-colors font-medium">
{t.nav.features}
</a>
<a href="#pricing" className="font-mono text-nano uppercase tracking-widest text-neutral-500 hover:text-neutral-300 transition-colors">
<a href="#pricing" className="text-xs text-neutral-400 hover:text-brand-blue transition-colors font-medium">
{t.nav.pricing}
</a>
<a href="#faq" className="font-mono text-nano uppercase tracking-widest text-neutral-500 hover:text-neutral-300 transition-colors">
<a href="#faq" className="text-xs text-neutral-400 hover:text-brand-blue transition-colors font-medium">
{t.nav.faq}
</a>
</div>
@ -50,7 +50,7 @@ export function Footer() {
{techStack.map((tech) => (
<span
key={tech}
className="font-mono text-nano uppercase tracking-widest text-neutral-600 bg-surface-700/50 px-2.5 py-1 rounded-sm border border-white/[0.03]"
className="text-xs text-neutral-400 bg-surface-800/80 px-2.5 py-1 rounded-lg border border-white/10 font-normal font-mono"
>
{tech}
</span>
@ -58,11 +58,11 @@ export function Footer() {
</div>
{/* Bottom bar */}
<div className="flex flex-col md:flex-row items-start md:items-center justify-between gap-4 pt-6 border-t border-white/[0.04]">
<span className="font-mono text-nano text-neutral-600 uppercase tracking-widest">
<div className="flex flex-col md:flex-row items-start md:items-center justify-between gap-4 pt-5 border-t border-white/10 text-xs text-neutral-400 font-normal">
<span>
{t.footer.copyright.replace('{year}', String(new Date().getFullYear()))}
</span>
<span className="font-mono text-nano text-neutral-600 uppercase tracking-widest">
<span>
{t.footer.builtWith}
</span>
</div>