Remove header and footer separator borders

This commit is contained in:
2025-11-17 21:34:24 +08:00
parent 845be8a6fe
commit 2a717665ca
2 changed files with 2 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ export function SiteFooter() {
}[]; }[];
return ( return (
<footer className="border-t py-4 text-center text-sm text-gray-500 dark:text-slate-400"> <footer className="py-4 text-center text-sm text-gray-500 dark:text-slate-400">
<div> <div>
© {new Date().getFullYear()} {siteConfig.author} © {new Date().getFullYear()} {siteConfig.author}
</div> </div>

View File

@@ -4,7 +4,7 @@ import { siteConfig } from '@/lib/config';
export function SiteHeader() { export function SiteHeader() {
return ( return (
<header className="border-b bg-white/80 backdrop-blur dark:bg-gray-950/80"> <header className="bg-white/80 backdrop-blur dark:bg-gray-950/80">
<div className="container mx-auto flex items-center justify-between px-4 py-3 text-slate-900 dark:text-slate-100"> <div className="container mx-auto flex items-center justify-between px-4 py-3 text-slate-900 dark:text-slate-100">
<Link href="/" className="font-semibold"> <Link href="/" className="font-semibold">
{siteConfig.title} {siteConfig.title}