-
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.
* adding raleway font * clean up providers component * clean up footer * adding components * adding design to homepage * adjust text color based on completion * Adding QR codes to desktop (#2) * adding app store qr codes * adding text to app store icons
- Loading branch information
Showing
14 changed files
with
343 additions
and
159 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 @@ | ||
import { clsx } from "clsx"; | ||
|
||
export function Container({ className, children }: { className?: string; children: React.ReactNode }) { | ||
return ( | ||
<div className={clsx(className, "px-6 lg:px-8")}> | ||
<div className="mx-auto max-w-7xl">{children}</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
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,14 @@ | ||
import { clsx } from "clsx"; | ||
|
||
export function Gradient({ className, ...props }: React.ComponentPropsWithoutRef<"div">) { | ||
return ( | ||
<div | ||
{...props} | ||
className={clsx(className, "")} | ||
style={{ | ||
background: | ||
"radial-gradient(at 53% 78%, rgba(161, 252, 247, 0.4) 0px, transparent 50%), radial-gradient(at 71% 91%, rgba(131, 169, 247, 0.4) 0px, transparent 50%), radial-gradient(at 31% 91%, rgba(205, 174, 251, 0.4) 0px, transparent 50%)", | ||
}} | ||
/> | ||
); | ||
} |
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
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.