12 lines
330 B
TypeScript
12 lines
330 B
TypeScript
import { BrandingAssets } from "@/components/branding-assets";
|
|
import Footer from "@/components/footer";
|
|
import { Navigation } from "@/components/navigation";
|
|
|
|
export default function BrandingAssetsPage() {
|
|
return (
|
|
<main className="flex min-h-screen flex-col items-center justify-start">
|
|
<BrandingAssets />
|
|
</main>
|
|
);
|
|
}
|