-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
114 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,3 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
:root { | ||
--background: #ffffff; | ||
--foreground: #171717; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
:root { | ||
--background: #0a0a0a; | ||
--foreground: #ededed; | ||
} | ||
} | ||
|
||
body { | ||
color: var(--foreground); | ||
background: var(--background); | ||
font-family: Arial, Helvetica, sans-serif; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export default function Home() { | ||
return ( | ||
<div> | ||
<nav className="flex justify-center font-bold"> | ||
<a href="/page" className="m-5 text-xl">Home</a> | ||
<a href="/page" className="m-5 text-xl">Trade</a> | ||
<a href="/page" className="m-5 text-xl">Contact</a> | ||
</nav> | ||
<header className="flex flex-col items-center justify-center m-7 p-7"> | ||
<h1 className="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-700 text-2xl sm:text-4xl font-bold">THOUGHTEXCHANGE</h1> | ||
<h3 className=" text-sm sm:text-2xl" >Trade With Crypto Based Upon Your Opinions!</h3> | ||
</header> | ||
</div> | ||
); | ||
} |