-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(web): new demo landing page (#95)
close #75
- Loading branch information
Showing
8 changed files
with
70 additions
and
39 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.
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,43 @@ | ||
--- | ||
import { ArrowUpRight } from "lucide-astro"; | ||
import { Button } from "@openui-org/react"; | ||
--- | ||
|
||
<img | ||
src="/gradient.png" | ||
alt="" | ||
class="absolute -top-8 left-2/4 -translate-x-1/2" | ||
width="800" | ||
/> | ||
|
||
<section class="py-24 sm:py-32 md:py-40 relative"> | ||
<div | ||
class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl gap-16 sm:gap-y-24 flex flex-col" | ||
> | ||
<div class="text-center relative z-[1]"> | ||
<h1 | ||
class="text-6xl font-bold tracking-tight text-balance" | ||
> | ||
<b class="text-sky-500"> Open UI </b>. A modern design system | ||
built with <b class="text-sky-500"> Shadcn UI</b> and | ||
<b class="text-sky-500"> Tailwind CSS </b> | ||
</h1> | ||
<p class="mt-6 text-lg tracking-tight text-foreground text-pretty"> | ||
Open UI is an open source design system with a completely | ||
cutting-edge system. <br /> Fully customizable and modifiable you | ||
will make UI development much faster with fully stylized components. | ||
</p> | ||
<div class="mt-10 flex flex-wrap gap-x-6 gap-y-3 justify-center"> | ||
<Button> | ||
<ArrowUpRight class="size-6" /> | ||
Get Started | ||
</Button> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
<figure class="flex justify-center items-center mt-8 mb-24"> | ||
<img src='/demo-dashboard.png' alt='Demo dashboard with Open UI.' class="rounded-md w-full object-cover h-[36rem]"/> | ||
</figure> |
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,10 @@ | ||
<section class="flex justify-around items-center my-20"> | ||
<article class="flex-1"> | ||
<h2 class="py-2 text-5xl sm:text-5xl lg:text-6xl sm:tracking-tight sm:leading-[1.1]! font-extrabold lg:max-w-lg mx-auto sm:mx-0"> | ||
Who said finance has to be boring? | ||
</h2> | ||
</article> | ||
<article class="flex-1"> | ||
<p>With Cobalt, managing your business finances is effortless, empowering, and anything but boring. Our intuitive platform brings clarity to your cash flow, simplifies your financial decision-making, and puts the power of advanced financial management right at your fingertips. Say no to spreadsheets and tools designed in the 80s.</p> | ||
</article> | ||
</section> |
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,6 @@ | ||
|
||
<a class="inline-flex items-center justify-center whitespace-nowrap rounded text-base font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 text-black bg-white shadow hover:bg-white/90 h-9 px-4 py-2 gap-1 cursor-pointer" {...Astro.props} > | ||
<slot /> | ||
</a> | ||
<a | ||
class="inline-flex items-center justify-center whitespace-nowrap rounded text-base font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 shadow h-9 px-4 py-2 gap-1 cursor-pointer" | ||
{...Astro.props} | ||
> | ||
<slot /> | ||
</a> |
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,35 +1,10 @@ | ||
--- | ||
import {ArrowUpRight} from 'lucide-astro' | ||
import Layout from '../layouts/Layout.astro'; | ||
import Link from '../components/Link.astro'; | ||
import Home from '../components/Home.astro'; | ||
import Info from '../components/Info.astro'; | ||
--- | ||
|
||
<Layout title="Welcome to Open UI."> | ||
<img src="/gradient.png" alt="" class="absolute -top-8 left-2/4 -translate-x-1/2" width="800"> | ||
<section class="py-24 sm:py-32 md:py-40 relative dark:bg-gradient-to-b from-gray-950 to-gray-900"> | ||
<div class="mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl gap-16 sm:gap-y-24 flex flex-col"> | ||
<div class="text-center relative z-[1]"> | ||
<h1 class="text-6xl font-bold tracking-tight text-white text-balance"> | ||
<b class="text-secondary-500"> | ||
Open UI | ||
</b>. A modern design system built with <b class="text-secondary-500"> | ||
Shadcn UI</b> and | ||
<b class="text-secondary-500"> | ||
Tailwind CSS | ||
</b> | ||
</h1> | ||
<p class="mt-6 text-lg tracking-tight text-dark-500 text-pretty"> | ||
Open UI is an open source design system with a completely cutting-edge system. <br> Fully customizable and modifiable you will make UI development much faster with fully stylized components. | ||
</p> | ||
<div class="mt-10 flex flex-wrap gap-x-6 gap-y-3 justify-center"> | ||
|
||
<Link href="https://docs.openui.org"> | ||
<ArrowUpRight class="size-6"/> | ||
Get Started | ||
</Link> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<Home /> | ||
<Info /> | ||
</Layout> |