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

@@ -1,12 +1,9 @@
"use client";
import { LOGO_COLORS } from "@/lib/logos";
import { ny } from "@/lib/utils";
import Image from "next/image";
import React from "react";
export const LOGO_COLORS = [
"black", "blue", "brown", "buff", "indigo", "mantis", "orchid", "pink", "tangerine", "turquise", "white", "yellow"
]
export default function Logo({ withText, ...props }: any) {
const [randomColor, setRandomColor] = React.useState(LOGO_COLORS[Math.floor(Math.random() * LOGO_COLORS.length)]);
React.useEffect(() => {