-
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
10 changed files
with
84 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Geist:[email protected]&display=swap'); | ||
@import url("https://fonts.googleapis.com/css2?family=Geist:[email protected]&display=swap"); | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
@@ -28,13 +28,13 @@ body { | |
} | ||
|
||
.main { | ||
@apply p-8 | ||
@apply p-8; | ||
} | ||
|
||
ol { | ||
@apply list-decimal ml-4 | ||
@apply list-decimal ml-4; | ||
} | ||
|
||
a { | ||
@apply text-neutral-400 hover:text-neutral-100 | ||
@apply text-neutral-400 hover:text-neutral-100; | ||
} |
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,27 +1,31 @@ | ||
export default function Projects() { | ||
return <div class="w-full my-8 flex-wrap flex justify-start"> | ||
<div class="div w-full md:w-1/2 pb-2 pr-0 md:pb-0 md:pr-2"> | ||
<div class="w-full flex flex-col group"> | ||
<img src="https://i.imgur.com/abJGvtz.png" alt="" class="w-full h-[18rem] object-cover opacity-60 group-hover:opacity-100 transition"/> | ||
<div class="p-4 bg-neutral-950"> | ||
<div class="flex justify-between"> | ||
<p class="text-neutral-300">⭐ aster</p> | ||
</div> | ||
<p class="text-sm">a much more easy to use and painless alternative to the default youtube studio.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="div w-full md:w-1/2 pt-2 md:pt-0 pl-0 md:pl-2"> | ||
<div class="w-full group flex flex-col"> | ||
<img src="https://i.imgur.com/AtDcSFO.png" class="w-full opacity-60 group-hover:opacity-100 transition h-[18rem] object-cover" alt=""/> | ||
<div class="p-4 bg-neutral-950"> | ||
<div class="flex justify-between"> | ||
<p class="text-neutral-300">🌺 Orchid</p> | ||
<a href="https://orchid.rex.wf" class="text-sm">visit beta!</a> | ||
</div> | ||
<p class="text-sm">a fast meme and profile picture editor packed with features and CAN run on low end devices.</p> | ||
return ( | ||
<div class="w-full my-8 flex-wrap flex justify-start"> | ||
<div class="div w-full md:w-1/2 pb-2 pr-0 md:pb-0 md:pr-2"> | ||
<div class="w-full flex flex-col group"> | ||
<img src="https://i.imgur.com/abJGvtz.png" alt="" class="w-full h-[18rem] object-cover opacity-60 group-hover:opacity-100 transition" /> | ||
<div class="p-4 bg-neutral-950"> | ||
<div class="flex justify-between"> | ||
<p class="text-neutral-300">⭐ aster</p> | ||
</div> | ||
<p class="text-sm">a much more easy to use and painless alternative to the default youtube studio.</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="div w-full md:w-1/2 pt-2 md:pt-0 pl-0 md:pl-2"> | ||
<div class="w-full group flex flex-col"> | ||
<img src="https://i.imgur.com/AtDcSFO.png" class="w-full opacity-60 group-hover:opacity-100 transition h-[18rem] object-cover" alt="" /> | ||
<div class="p-4 bg-neutral-950"> | ||
<div class="flex justify-between"> | ||
<p class="text-neutral-300">🌺 Orchid</p> | ||
<a href="https://orchid.rex.wf" class="text-sm"> | ||
visit beta! | ||
</a> | ||
</div> | ||
<p class="text-sm">a fast meme and profile picture editor packed with features and CAN run on low end devices.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
export default function Team() { | ||
return<> <div class="flex mt-4 flex-wrap gap-4"> | ||
<a href="https://namishh.me"> <img src="https://sakura.rex.wf/linear/namishh" class="h-12 w-12 rounded-full" alt="namish"/></a> | ||
<a href="https://rex.wf"> <img src="https://sakura.rex.wf/linear/rexdotsh" class="h-12 w-12 rounded-full" alt="rex"/> </a> | ||
</div> | ||
</> | ||
return ( | ||
<> | ||
{" "} | ||
<div class="flex mt-4 flex-wrap gap-4"> | ||
<a href="https://namishh.me"> | ||
{" "} | ||
<img src="https://sakura.rex.wf/linear/namishh" class="h-12 w-12 rounded-full" alt="namish" /> | ||
</a> | ||
<a href="https://rex.wf"> | ||
{" "} | ||
<img src="https://sakura.rex.wf/linear/rexdotsh" class="h-12 w-12 rounded-full" alt="rex" />{" "} | ||
</a> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// @refresh reload | ||
import { mount, StartClient } from "@solidjs/start/client"; | ||
import {mount, StartClient} from "@solidjs/start/client"; | ||
|
||
mount(() => <StartClient />, document.getElementById("app")!); |
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,7 +1,7 @@ | ||
import { HttpStatusCode } from "@solidjs/start"; | ||
import {HttpStatusCode} from "@solidjs/start"; | ||
|
||
<HttpStatusCode code={404} /> | ||
|
||
# Page Not Found | ||
|
||
Nothing in here, for now | ||
nothing in here, for now |
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,3 +1,3 @@ | ||
# Hello | ||
# hello | ||
|
||
We assure this will be full of some text soon...... | ||
we assure this will be full of some text soon™ |
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,17 +1,17 @@ | ||
import Projects from "../components/Projects" | ||
import Team from "../components/Team" | ||
import Projects from "../components/Projects"; | ||
import Team from "../components/Team"; | ||
|
||
# flora | ||
|
||
we build practical web tools that solve _real_ problems, transforming creative ideas into useful digital solutions for everyday challenges. follow [@namishh_](https://x.com/namishh_) on x for updates regarding our projects | ||
we build practical web tools that solve _real_ problems, transforming creative ideas into useful digital solutions for everyday challenges. | ||
|
||
<br/> | ||
<br /> | ||
## projects | ||
|
||
<Projects/> | ||
<Projects /> | ||
or you can also visit our [github](https://github.com/floraorg) | ||
<br/> | ||
<br /> | ||
## team | ||
|
||
<Team/> | ||
<p class="mt-4">if you would like to work with us, dm your resume or github to [@namishh_](https://x.com/namishh_) on x.</p> | ||
<Team /> | ||
<p class="mt-4">if you would like to work with us, dm your resume or github to [@namishh_](https://x.com/namishh_) or [@rexmkv](https://x.com/rexmkv) on x.</p> |