-
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
13 changed files
with
93 additions
and
95 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,22 @@ | ||
{ | ||
nixpkgs ? fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05", | ||
pkgs ? import nixpkgs { config = {}; overlays = []; } | ||
}: | ||
|
||
pkgs.mkShellNoCC { | ||
packages = with pkgs; [ | ||
cowsay | ||
|
||
bun | ||
nodePackages.typescript | ||
nodePackages.typescript-language-server | ||
nodePackages.prettier | ||
emmet-ls | ||
]; | ||
|
||
# Hook to install requirements when entering the shell | ||
shellHook = '' | ||
cowsay "Nix Shell Activated!" | ||
''; | ||
} | ||
|
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,10 +1,10 @@ | ||
@import url("https://fonts.googleapis.com/css2?family=Geist:[email protected]&display=swap"); | ||
@import url("https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap"); | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
* { | ||
font-family: "Geist", sans-serif; | ||
font-family: "Inter", sans-serif; | ||
} | ||
|
||
h1 { | ||
|
@@ -27,9 +27,6 @@ body { | |
@apply w-full md:w-3/5 lg:w-1/2 leading-9 text-neutral-200 text-[16px] md:text-[18px]; | ||
} | ||
|
||
.main { | ||
@apply p-8; | ||
} | ||
|
||
ol { | ||
@apply list-decimal ml-4; | ||
|
@@ -50,7 +47,3 @@ a { | |
.team-avatar { | ||
@apply transition-transform duration-200 hover:scale-110; | ||
} | ||
|
||
.mdx-content > * { | ||
@apply my-6; | ||
} |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,46 @@ | ||
import Art from "../components/Art.tsx"; | ||
|
||
export default function Home() { | ||
return ( | ||
<div class="w-full flex justify-center overflow-x-hidden"> | ||
<div class="h-screen w-full p-6 md:w-2/3 flex flex-col items-center justify-center"> | ||
<Art imagePath="/public/imagewbg.png" /> | ||
<div class="flex w-full items-center gap-4"> | ||
<img src="/public/image.png" alt="logo" class="h-12" /> | ||
<h1 class="text-white text-2xl md:text-3xl font-bold">Flora</h1> | ||
</div> | ||
<p class="text-white z-[10] self-start text-left text-lg md:text-xl leading-8 mt-6 mb-3"> | ||
Flora is a team of developers aiming to create practical and useful | ||
solutions for real problems. | ||
</p> | ||
<div class="text-white z-[400] text-left self-start text-lg md:text-xl leading-8"> | ||
Our current projects:{" "} | ||
<div className="inline-block group relative"> | ||
<a href="https://orchid.rex.wf">orchid</a> | ||
<img | ||
src="/orchid.png" | ||
class="absolute scale-[5] lg:scale-[9] z-[500] md:group-hover:opacity-100 opacity-0 transition pointer-events-none top-[5rem] lg:top-[8.8rem] my-2 left-[2rem] lg:left-[4rem]" | ||
alt="" | ||
/> | ||
</div>{" "} | ||
and{" "} | ||
<div className="inline-block group relative"> | ||
<a href="#">aster</a> | ||
<img | ||
src="/aster.png" | ||
class="absolute scale-[7] lg:scale-[11] z-[500] md:group-hover:opacity-100 opacity-0 transition pointer-events-none top-[5rem] lg:top-[8.8rem] my-2 left-[-4rem] lg:left-[4rem]" | ||
alt="" | ||
/> | ||
</div> | ||
{"."} | ||
</div> | ||
<div class="divider px-2 pt-[1px] bg-neutral-800 my-3"></div> | ||
<p class="text-sm text-left self-start z-[10]"> | ||
Founded by <a href="https://namishh.me">nam</a> and{" "} | ||
<a href="https://rex.me">rex</a>. Follow us on{" "} | ||
<a href="https://github.com/floraorg">github</a>. | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |