-
-
Notifications
You must be signed in to change notification settings - Fork 17
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
1 parent
521beac
commit e1ca6f6
Showing
5 changed files
with
50 additions
and
2 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.
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,21 @@ | ||
--- | ||
import Slide from "@/components/presentation/Slide.astro"; | ||
import { siteConfig } from "@/config/site"; | ||
import { Icon } from "astro-icon/components"; | ||
--- | ||
|
||
<Slide> | ||
<span class="mt-40 flex items-center space-x-2 text-5xl"> | ||
<Icon name="mark" class="size-16" color="#6366f1" /> | ||
<span class="inline-block text-6xl font-bold"> | ||
{siteConfig.name} | ||
</span> | ||
</span> | ||
<h1 | ||
class="font-heading mt-12 text-balance text-4xl font-bold !leading-[1.1] sm:text-5xl md:text-6xl lg:text-7xl" | ||
> | ||
The <span class="text-gradient_indigo-purple">React</span> library<br /> | ||
for | ||
<span class="text-gradient_indigo-purple">LLMs</span> | ||
</h1> | ||
</Slide> |
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,27 @@ | ||
--- | ||
import Slide from "@/components/presentation/Slide.astro"; | ||
import { AvatarComponent } from "@/components/ui/custom/AvatarComponent"; | ||
import { siteConfig } from "@/config/site"; | ||
import { Icon } from "astro-icon/components"; | ||
--- | ||
|
||
<Slide> | ||
<h1 class="font-heading mt-52 text-7xl">Improving the ChatGPT UI</h1> | ||
<span class="flex items-center space-x-2 pt-6 text-5xl"> | ||
<span class="inline-block text-5xl">with</span> | ||
<Icon name="mark" class="size-12" color="#6366f1" /> | ||
<span class="inline-block text-5xl font-bold"> | ||
{siteConfig.name} | ||
</span> | ||
</span> | ||
<div class="flex flex-row items-center gap-4 pt-40"> | ||
<AvatarComponent | ||
client:load | ||
src="https://github.com/richardgill.png" | ||
alt="Richard Gill" | ||
fallbackText="RG" | ||
className="size-18" | ||
/> | ||
<span class="text-5xl">Richard Gill</span> | ||
</div> | ||
</Slide> |