Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

プロポーザル募集のcompoennt を作成 #41

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions src/components/ApplyToProposal/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
import { Decoration } from "@/components/Decoration";
import { Button } from "@/components/ui/button";
import { ArrowRight } from "lucide-react";
import Link from "next/link";

// TODO: position が整っていないので、整える
export const ApplyToProposal = () => {
return (
<div className="bg-blue-light-400 flex items-center justify-center">
<div className=" flex flex-col items-center justify-center md:p-10 lg:p-16 px-6 py-10 rounded-lg">
<div className="bg-white p-6 md:px-10 md:py-6 lg:py-16 lg:px-10 flex flex-col items-center rounded-lg">
<div className="flex flex-col items-center">
<h1 className="lg:text-[32px] md:text-[28px] text-[24px] font-bold text-center pb-4">
プロポーザル募集
</h1>
<Decoration />
</div>
<div className="py-6 md:py-6 lg:py-10">
<p className="text-[16px] md:text-[18px] text-left">
プロポーザル募集についてのテキストが入ります。プロポーザル募集についてのテキストが入ります。プロポーザル募集についてのテキストが入ります。プロポーザル募集についてのテキストが入ります。プロポーザル募集についてのテキストが入ります。プロポーザル募集についてのテキストが入ります。プロポーザル募集についてのテキストが入ります。プロポーザル募集についてのテキストが入ります。プロポーザル募集についてのテキストが入ります。
</p>
</div>
<div className="flex justify-center">
<Button
asChild
variant="default"
size="lg"
className="rounded-full w-[280px] h-[60px] fill-primary bg-blue-purple-500 hover:bg-blue-purple-600 text-white"
>
{/* TODO: href を今年の プロポーザル募集のURL に変更 */}
<Link
href="https://docs.google.com/forms/d/e/1FAIpQLSfZR2TQr0E6CJ9l9hy9L9xvO5o6Ep5GXcZo57zq-7b_TEt52g/viewform"
target="_blank"
rel="noopener noreferrer"
className="font-bold text-[22px] flex items-center space-x-2"
>
<span>抽選を申し込む</span>
<ArrowRight />
</Link>
</Button>
</div>
</div>
</div>
</div>
);
};
Loading