Skip to content

Commit 8162537

Browse files
committed
community stat
1 parent f11f2ec commit 8162537

File tree

7 files changed

+91
-37
lines changed

7 files changed

+91
-37
lines changed

app/(marketing)/page.tsx

Lines changed: 45 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ export default async function Home() {
5353
</Text>
5454

5555
<p className="text-lg text-muted mb-8 mt-4">
56-
Retro styled component library for modern web apps. Comes with 20+
57-
free UI components that you can just copy paste into your
58-
projects. {/* <br /> Now available for both HTML and React! */}
56+
Retro styled component library based on React and TailwindCSS.
57+
Comes with 40+ free UI components that you can just copy paste
58+
into your projects.
5959
</p>
6060

6161
<div className="max-w-96 grid gap-4 grid-cols-2 mx-auto lg:mx-0">
@@ -181,6 +181,45 @@ export default async function Home() {
181181
</div>
182182
</section>
183183

184+
<section className="container max-w-6xl mx-auto bg-[url('/images/starts_bg.svg')] bg-cover bg-no-repeat py-12">
185+
<Text as="h2" className="text-center mb-28">
186+
A Growing Community of <br /> Developers and Designers.
187+
</Text>
188+
189+
<div className="grid grid-cols-1 md:grid-cols-2 gap-12 max-w-2xl mx-auto">
190+
<div className="flex flex-col items-start relative mx-auto">
191+
<Text as="h3" className="mb-2 font-sans">
192+
Github Stars
193+
</Text>
194+
<Text as="h1" className="text-outlined text-7xl lg:text-8xl">
195+
150+
196+
</Text>
197+
<Image
198+
src="/images/shooting_star.svg"
199+
width={120}
200+
height={120}
201+
alt="shotting stars"
202+
className="absolute -top-[80px] -left-[80px]"
203+
/>
204+
</div>
205+
<div className="flex flex-col items-start relative mx-auto">
206+
<Text as="h3" className="mb-2 font-sans">
207+
Discord Members
208+
</Text>
209+
<Text as="h1" className="text-outlined text-7xl lg:text-8xl">
210+
100+
211+
</Text>
212+
<Image
213+
src="/images/shooting_star.svg"
214+
width={120}
215+
height={120}
216+
alt="shotting stars"
217+
className="absolute -right-[80px] -bottom-[80px] rotate-180"
218+
/>
219+
</div>
220+
</div>
221+
</section>
222+
184223
<section className="container max-w-6xl mx-auto border-2 bg-primary-400 border-black py-16 px-4 lg:p-16 my-36">
185224
<Text as="h2" className="text-center mb-2">
186225
Community Contributors
@@ -209,13 +248,13 @@ export default async function Home() {
209248
</div>
210249
<div className="flex flex-col lg:flex-row items-center justify-center gap-4 mt-12">
211250
<Link
212-
href="https://opencollective.com/retroui"
251+
href="github.com/logging-stuff/retroui"
213252
target="_blank"
214253
passHref
215254
>
216255
<Button className="flex items-center bg-white" variant="outline">
217-
<HeartIcon size="16" className="mr-2" />
218-
Sponsor RetroUI
256+
<GithubIcon size="16" className="mr-2" />
257+
Star on Github
219258
</Button>
220259
</Link>
221260
<Link href="https://discord.gg/Jum3NJxK6Q" target="_blank" passHref>

infra/Caddyfile

Lines changed: 0 additions & 3 deletions
This file was deleted.

infra/docker-compose.dev.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

infra/docker-compose.prod.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

packages/ui/Text/Text.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const textVariants = cva("font-head", {
88
p: "font-sans text-base",
99
h1: "text-5xl lg:text-6xl font-bold",
1010
h2: "text-3xl lg:text-5xl font-semibold",
11-
h3: "text-2xl font-medium",
11+
h3: "text-2xl lg:text-3xl font-medium",
1212
h4: "text-xl font-medium",
1313
h5: "text-lg font-medium",
1414
h6: "",

public/images/shooting_star.svg

Lines changed: 9 additions & 0 deletions
Loading

public/images/starts_bg.svg

Lines changed: 36 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)