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

Join Now! button added home page #18

Merged
merged 2 commits into from
Jan 13, 2025
Merged
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
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Example from "@/components/home/example";
import Example from "@/components/home/joinbutton";

const Home = () => {
return (
Expand Down
7 changes: 0 additions & 7 deletions src/components/home/example.tsx

This file was deleted.

13 changes: 13 additions & 0 deletions src/components/home/joinbutton.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";

const joinbutton = () => {
return (
<div className="flex items-center justify-center">
<button className="mt-[57vh] rounded-full border px-6 py-2 font-seasons text-3xl shadow-lg">
JOIN NOW!
</button>
</div>
);
};

export default joinbutton;
Loading