logo re-design

This commit is contained in:
fccview
2025-08-19 10:26:40 +01:00
parent 4d69fc854c
commit 602b5c974d
3 changed files with 18 additions and 9 deletions

14
app/logo/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { Asterisk, Terminal } from "lucide-react";
export default async function Logo() {
return (
<div className="m-auto mt-20 relative w-[600px] h-[600px]">
<div className="p-3 bg-gradient-to-br from-purple-500 via-pink-500 to-orange-500 rounded-[200px] w-full h-full">
<div className="relative">
<Terminal className="h-[350px] w-[350px] text-white relative top-[120px] left-[120px]" />
<Asterisk className="h-[200px] w-[200px] text-white absolute top-14 right-[90px]" />
</div>
</div>
</div>
);
}

View File

@@ -4,8 +4,8 @@ import { getSystemInfo, getCronJobs } from "./_utils/system";
import { fetchScripts } from "./_server/actions/scripts";
import { ThemeToggle } from "./_components/ui/ThemeToggle";
import { ToastContainer } from "./_components/ui/Toast";
import { Terminal, Zap } from "lucide-react";
export const dynamic = 'force-dynamic';
import { Asterisk, Terminal, Zap } from "lucide-react";
export const dynamic = "force-dynamic";
export default async function Home() {
const [systemInfo, cronJobs, scripts] = await Promise.all([
@@ -23,13 +23,8 @@ export default async function Home() {
<div className="flex items-center justify-center">
<div className="flex items-center gap-4">
<div className="relative">
<div className="p-3 bg-gradient-to-br from-purple-500 via-pink-500 to-orange-500 rounded-xl shadow-lg">
<div className="relative">
<Terminal className="h-6 w-6 text-white" />
<Zap className="h-3 w-3 text-white absolute -top-1 -right-1" />
</div>
</div>
<div className="absolute -top-1 -right-1 w-3 h-3 bg-emerald-500 rounded-full animate-pulse"></div>
<img src="/logo.png" alt="logo" className="w-14 h-14" />
<div className="absolute top-0 right-0 w-3 h-3 bg-emerald-500 rounded-full animate-pulse"></div>
</div>
<div>
<h1 className="text-xl sm:text-2xl lg:text-3xl font-bold brand-gradient brand-text">

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 33 KiB