Skip to content
Open
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions app/(pages)/registration/_components/cheers/cheers.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import Image from 'next/image';

export default function TenYears() {
return (
<div>
<Image
src="/Images/cheers/cheers.svg"
alt="Cheers to 10 years!"
width={110}
height={144}
className="ml-[8%] w-[915px] h-[695px]"
/>
</div>
);
}
11 changes: 11 additions & 0 deletions app/(pages)/registration/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import Cheers from './_components/cheers/cheers';

export default function Registration() {
return (
<div className="relative">
<p>Registration</p>

<Cheers />
</div>
);
}
Loading