Remove header and footer separator borders
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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}
|
||||||
|
|||||||
Reference in New Issue
Block a user