-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from hollow-leaf/refactor/updateTS
refactor: update ts & redirect home
- Loading branch information
Showing
29 changed files
with
505 additions
and
748 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
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,23 +1,14 @@ | ||
import { Metadata } from "next"; | ||
import { Button, Card } from "ui"; | ||
'use client' | ||
|
||
import { useRouter } from 'next/navigation'; | ||
import { useEffect } from 'react'; | ||
|
||
export default function Home() { | ||
return ( | ||
<div className="flex flex-col items-center justify-center"> | ||
<main className="mx-auto w-auto px-4 pt-16 pb-8 sm:pt-24 lg:px-8"> | ||
<h1 className="mx-auto text-center font-extrabold tracking-tight text-white space-y-8"> | ||
<span className="text-7xl sm:text-8xl lg:text-9xl xl:text-9xl">TOBI</span> | ||
<span className="block bg-gradient-to-r from-brandred to-brandblue bg-clip-text text-transparent px-2 text-6xl sm:text-7xl lg:text-8xl xl:text-8xl"> | ||
All-Chain KYC Platform | ||
</span> | ||
<span className="block px-2 text-3xl sm:text-4xl lg:text-5xl xl:text-5xl space-x-2"> | ||
<span className="text-cat-orange500">T</span>oken | ||
<span className="text-cat-orange500">O</span>ptimizing | ||
<span className="text-cat-orange500">B</span>ridge | ||
<span className="text-cat-orange500">I</span>ntelligence | ||
</span> | ||
</h1> | ||
</main> | ||
</div> | ||
); | ||
const router = useRouter(); | ||
|
||
useEffect(() => { | ||
router.push('/'); | ||
}, []); | ||
|
||
return null | ||
} |
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
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,23 @@ | ||
import { Metadata } from "next"; | ||
import { Button, Card } from "ui"; | ||
|
||
export default function Page() { | ||
return ( | ||
<div className="flex flex-col items-center justify-center"> | ||
<main className="mx-auto w-auto px-4 pt-16 pb-8 sm:pt-24 lg:px-8"> | ||
<h1 className="mx-auto text-center font-extrabold tracking-tight text-white space-y-8"> | ||
<span className="text-7xl sm:text-8xl lg:text-9xl xl:text-9xl">TOBI</span> | ||
<span className="block bg-gradient-to-r from-brandred to-brandblue bg-clip-text text-transparent px-2 text-6xl sm:text-7xl lg:text-8xl xl:text-8xl"> | ||
All-Chain KYC Platform | ||
</span> | ||
<span className="block px-2 text-3xl sm:text-4xl lg:text-5xl xl:text-5xl space-x-2"> | ||
<span className="text-cat-orange500">T</span>oken | ||
<span className="text-cat-orange500">O</span>ptimizing | ||
<span className="text-cat-orange500">B</span>ridge | ||
<span className="text-cat-orange500">I</span>ntelligence | ||
</span> | ||
</h1> | ||
</main> | ||
</div> | ||
); | ||
} |
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
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
File renamed without changes.
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
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
Oops, something went wrong.