引入头像,完成首页

This commit is contained in:
2025-04-25 22:24:37 +08:00
parent b62eef66b6
commit b64e55886d
7 changed files with 145 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 2.6 MiB

View File

@@ -116,7 +116,32 @@
* {
@apply border-border outline-ring/50;
}
body {
@apply bg-background text-foreground;
}
}
@keyframes gradient-text {
0% {
background-position: 0% center;
}
100% {
background-position: -200% center;
}
}
.gradient-title {
background: linear-gradient(30deg,
#2657e8 0%,
#ef0c7e 25%,
#3527f5 50%,
#ec1111 75%,
#2657e8 100%);
background-size: 400% 200%;
color: transparent;
background-clip: text;
-webkit-background-clip: text;
animation: gradient-text 20s linear infinite;
}

View File

@@ -1,4 +1,3 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ThemeProvider } from "./components/theme-provider";
@@ -37,7 +36,7 @@ export default function RootLayout({
disableTransitionOnChange
>
<Header />
<main className="flex-grow bg-zinc-50">
<main className="flex-1 flex flex-col bg-zinc-50">
{children}
<Toaster />
</main>

View File

@@ -1,7 +1,16 @@
'use client';
import favicon from './favicon.ico';
export default function Home() {
return (
<div>
1312
<div className="w-full flex-1 flex flex-col items-center justify-center">
<img src={favicon.src} className="size-35 md:size-45 rounded-full duration-400" />
<h1 className='text-4xl md:text-5xl font-bold mt-5 md:mt-8 gradient-title duration-400'>(TONE)</h1>
<h2 className='text-lg sm:text-xl md:text-2xl mt-3 font-medium text-zinc-400 duration-400'></h2>
<div className='flex sm:flex-row flex-col gap-2 sm:gap-10 mt-5 md:mt-8 duration-400'>
<a href='https://space.bilibili.com/474156211' target='_black' className='bg-[#488fe9] hover:bg-[#3972ba] text-center text-white w-45 sm:w-32 px-6 py-2 text-lg rounded-full cursor-pointer'></a>
<a href='https://github.com/tonecn' className='bg-[#da843f] hover:bg-[#c87d3e] text-center text-white w-45 sm:w-32 px-6 py-2 text-lg rounded-full cursor-pointer'>GitHub</a>
</div>
</div>
);
}