- Added new FAQ sections for account security, ordering and checkout, returns, shipping, and contact information. - Introduced legal documents including privacy policy, terms of service, data protection, and general terms and conditions. - Updated package dependencies to include gray-matter and remark-gfm for enhanced markdown support.
12 lines
258 B
TypeScript
12 lines
258 B
TypeScript
import { CoreBrandBar } from "./CoreBrandBar";
|
|
import { BottomNav } from "./BottomNav";
|
|
|
|
export function DesktopHeader() {
|
|
return (
|
|
<header className="sticky top-0 z-50 w-full shadow-sm">
|
|
<CoreBrandBar />
|
|
<BottomNav />
|
|
</header>
|
|
);
|
|
}
|