chore: Update branding assets page layout and styles

This commit is contained in:
Mauro Balades
2024-08-17 23:39:57 +02:00
parent 3f20072951
commit 954ef38c31
6 changed files with 70 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
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 />
<Footer />
<Navigation /> {/* At the bottom of the page */}
</main>
);
}