feat: home-page basic

This commit is contained in:
yuguangzhou
2024-05-26 23:21:34 +08:00
parent 89d8ba29d4
commit 9ed1c307db
2 changed files with 17 additions and 4 deletions
+16 -4
View File
@@ -1,11 +1,23 @@
import Image from "next/image";
import { Button } from "@/components/ui/button";
import { CircleArrowRight } from "lucide-react";
import IconLogo from "@/assets/images/logo@2x.svg";
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-between p-24">
<div></div>
<Button>使</Button>
<main className="flex min-h-screen flex-col items-center p-[24px]">
<header className="flex justify-between w-[100%]">
<div>
<Image src={IconLogo} alt="logo"></Image>
</div>
<Button></Button>
</header>
<section className="flex flex-col items-center">
<h1 className="text-[48px]">线</h1>
<Button className="w-[160px] text-[18px] mt-[36px]">
使 <CircleArrowRight className="ml-[10px]" />
</Button>
</section>
<div className="w-[900px] h-[500px] bg-[red] mt-[60px] rounded-[32px]"></div>
</main>
);
}
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB