+
API & Scaling
diff --git a/dashboard/components/brand-logo.tsx b/dashboard/components/brand-logo.tsx
new file mode 100644
index 0000000..aa8c96f
--- /dev/null
+++ b/dashboard/components/brand-logo.tsx
@@ -0,0 +1,36 @@
+/**
+ * ╔══════════════════════════════════════════════════════════════════╗
+ * ║ ║
+ * ║ +-+-+-+-+-+-+-+-+ ║
+ * ║ |H|e|x|a|H|o|s|t| ║
+ * ║ +-+-+-+-+-+-+-+-+ ║
+ * ║ ║
+ * ║ © 2026 HexaHost — All Rights Reserved ║
+ * ║ ║
+ * ║ discord ── https://discord.gg/hexahost ║
+ * ║ github ── https://github.com/theoneandonlymace ║
+ * ║ ║
+ * ╚══════════════════════════════════════════════════════════════════╝
+ */
+import Image from "next/image";
+import { cn } from "@/lib/utils";
+
+type BrandLogoProps = {
+ className?: string;
+ size?: number;
+ priority?: boolean;
+};
+
+export function BrandLogo({ className, size = 40, priority = false }: BrandLogoProps) {
+ return (
+
+ );
+}
diff --git a/dashboard/public/apple-touch-icon.png b/dashboard/public/apple-touch-icon.png
new file mode 100644
index 0000000..4851ae1
Binary files /dev/null and b/dashboard/public/apple-touch-icon.png differ
diff --git a/dashboard/public/favicon-32.png b/dashboard/public/favicon-32.png
new file mode 100644
index 0000000..e696e79
Binary files /dev/null and b/dashboard/public/favicon-32.png differ
diff --git a/dashboard/public/favicon.ico b/dashboard/public/favicon.ico
new file mode 100644
index 0000000..7006e0a
Binary files /dev/null and b/dashboard/public/favicon.ico differ
diff --git a/dashboard/public/favicon.svg b/dashboard/public/favicon.svg
new file mode 100644
index 0000000..e11afcb
--- /dev/null
+++ b/dashboard/public/favicon.svg
@@ -0,0 +1,11 @@
+
diff --git a/dashboard/public/logo.png b/dashboard/public/logo.png
new file mode 100644
index 0000000..3cd935a
Binary files /dev/null and b/dashboard/public/logo.png differ
diff --git a/dashboard/public/logo.svg b/dashboard/public/logo.svg
new file mode 100644
index 0000000..025316a
--- /dev/null
+++ b/dashboard/public/logo.svg
@@ -0,0 +1,42 @@
+
diff --git a/dashboard/tailwind.config.ts b/dashboard/tailwind.config.ts
index 586ba8d..6f35594 100644
--- a/dashboard/tailwind.config.ts
+++ b/dashboard/tailwind.config.ts
@@ -26,23 +26,28 @@ const config: Config = {
background: "var(--background)",
foreground: "var(--foreground)",
primary: {
- DEFAULT: "#ef4444", // Vivid Red
- hover: "#dc2626",
- glow: "rgba(239, 68, 68, 0.5)",
+ DEFAULT: "#ff51f9", // HexaHost magenta
+ hover: "#c31adf",
+ glow: "rgba(255, 81, 249, 0.45)",
},
secondary: {
- DEFAULT: "#020617", // Deep Navy/Black
- light: "#0f172a",
+ DEFAULT: "#0d0821", // HexaHost deep purple
+ light: "#1a1230",
},
accent: {
- red: "rgba(239, 68, 68, 0.1)",
- glass: "rgba(255, 255, 255, 0.03)",
+ DEFAULT: "#a348ff",
+ blue: "#3978ff",
+ neon: "#00cfff",
+ red: "rgba(255, 81, 249, 0.12)",
+ glass: "rgba(255, 255, 255, 0.05)",
}
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
+ "hexa-primary": "linear-gradient(135deg, #ff51f9 0%, #a348ff 100%)",
+ "hexa-neon": "linear-gradient(135deg, #00cfff 0%, #ff51f9 100%)",
},
},
},