Skip to content

Commit

Permalink
checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Neon-20 committed Nov 6, 2023
1 parent 02e2936 commit b9dd876
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions src/components/LandingHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,23 @@ export default function LandingHero() {
</div>
<div className="flex flex-wrap justify-between">
<div className="text-5xl tracking-wide md:w-1/2 md:px-2 md:text-6xl md:leading-tight">
Build like a team of hundreds
<span className="text-primary">_</span>
Web3 payments for the
<span className="font-bold"> Internet.. 🌐</span>
</div>
<div className="mt-3 flex flex-col justify-between gap-6 px-2 md:w-1/2 ">
<div className="mt-3 flex flex-col justify-between gap-6 px-6 py-4 md:w-1/2 ">
<p className="text-base text-muted-foreground">
{"Appwrite's"} open-source platform lets you add Auth, DBs,
Functions and Storage to your product and build any application
at any scale, own your data, and use your preferred coding
languages and tools.
</p>
<div className="flex gap-6">
<Button size={"sm"} variant={"primary"}>
<Button size={"sm"} variant={"primary"}
className="text-slate-800 font-medium">
Get Started
</Button>
<Button variant={"outline"} size={"sm"}>
<Button variant={"outline"} size={"sm"}
className="border-0 text-white">
Join the waitlist
</Button>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Button } from "@/components/ui/button";

const internalLinks = [
{ name: "Docs", link: "" },
{ name: "Communty", link: "" },
{ name: "Community", link: "" },
];

const externalLinks = [
Expand Down Expand Up @@ -58,8 +58,8 @@ function Navbar() {
{/*Internal Links*/}
<div className="flex items-center gap-2">
<FlitchPayLogo />
<h1 className="text-lg font-extrabold">FlitchPay</h1>
<div className="ml-4 hidden items-start justify-center gap-4 md:flex md:flex-wrap">
<h1 className="text-lg font-semibold cursor-pointer">FlitchPay</h1>
<div className="ml-4 hidden items-start justify-center gap-4 md:flex md:flex-wrap ">
{internalLinks.map((link) => (
<Link href={link.link} key={link.name} className="font-medium ">
{link.name}
Expand Down

0 comments on commit b9dd876

Please sign in to comment.