-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change bg and display logo, version and copy rights
- Loading branch information
Showing
4 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
"use client"; | ||
|
||
import Spinning from "@/app/components/ui/spinning"; | ||
import Image from "next/image"; | ||
import pkg from '@/package.json'; | ||
|
||
export default function Home() { | ||
return ( | ||
<div className="h-full LandingPage"> | ||
<main className="h-full flex items-center justify-center"> | ||
<Spinning/> | ||
<div className="h-full bg-foreground flex flex-col gap-4"> | ||
<main className="grow flex flex-col gap-8 items-center justify-center"> | ||
<Image priority src="/BrowserLogo.svg" alt="FalkorDB Logo" width={400} height={100} /> | ||
<Spinning /> | ||
</main> | ||
<div className="flex flex-col gap-8 justify-center items-center"> | ||
<p>Version: {`{${pkg.version}}`}</p> | ||
<p className="text-sm">All Rights Reserved © 2024 - {new Date().getFullYear()} falkordb.com</p> | ||
</div> | ||
<div className="h-5 Gradient" /> | ||
</div> | ||
) | ||
} |