-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(web): add biolnk landing page (#115)
* chore(gamut): add '2xl' variant for input and button components * chore(web): add assets for meet biolnk section * chore(web): update tailwind config and global styles * feat(web): add landing page * chore(web): update pckg && tweeks * feat(web): add claim link logic * feat(studio): add signup username autocomplete from query string
- Loading branch information
Showing
31 changed files
with
807 additions
and
153 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
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.
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,24 @@ | ||
import { Heading } from "@biolnk/gamut"; | ||
import type { FC } from "react"; | ||
|
||
export interface FeatureCardProps { | ||
title: string; | ||
description: string; | ||
} | ||
|
||
/** | ||
* @TODO Improve feature cards according to the design | ||
*/ | ||
const FeatureCard: FC<FeatureCardProps> = ({ title, description }) => { | ||
return ( | ||
<div className="bg-mauve-50 p-8 rounded-3xl shadow-xl"> | ||
<Heading as="h3" className="!text-3xl font-medium pb-6"> | ||
{title} | ||
</Heading> | ||
|
||
<p className="text-lg text-mauveDark-600">{description}</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default FeatureCard; |
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,39 @@ | ||
import { Container, Text } from "@biolnk/gamut"; | ||
import type { FC } from "react"; | ||
|
||
/** | ||
* @TODO Add back the features once we get the cards improvemts | ||
*/ | ||
const Features: FC = () => { | ||
return ( | ||
<section className="bg-mauve-300"> | ||
<Container as="div" className="pt-32 pb-28 flex flex-col items-center"> | ||
<h2 className="text-7xl bg-clip-text text-transparent bg-gradient-btn-active font-semibold max-w-6xl text-center pb-8"> | ||
The link between you and your audience. | ||
</h2> | ||
<Text center className="xs:!text-xl !text-lg max-w-4xl"> | ||
With Biolnk you can create pages for things like blogs, merch, | ||
multimedia and so much more. Everything included, no subscription or | ||
upgrades needed. | ||
</Text> | ||
|
||
{/* <div className="grid lg:grid-cols-3 md:grid-cols-2 w-full xl:gap-8 gap-4 mt-20"> | ||
<FeatureCard | ||
title="Add all your links" | ||
description="Biolnk makes it super simple to create and manage new links, allowing your audience to engage with your online content through a custom page that reflects your brand." | ||
/> | ||
<FeatureCard | ||
title="Your own look and feel" | ||
description="Customize your biolink page to fit your brand with your logo, the right colors, background image and much more. You get one link you can share anywhere, on platforms." | ||
/> | ||
<FeatureCard | ||
title="Effortless integrations" | ||
description="Has a plug and play feel, easily integrate with all your favorite tools and APIs including Google Analytics and more." | ||
/> | ||
</div> */} | ||
</Container> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Features; |
Oops, something went wrong.
dd43b92
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
biolnk-web – ./apps/web
biolnk.me
biolnk-web-kerosz.vercel.app
biolnk-web.vercel.app
biolnk-web-git-production-kerosz.vercel.app
*.biolnk.me
dd43b92
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
biolnk-studio – ./apps/studio
app.biolnk.me
biolnk-studio-kerosz.vercel.app
biolnk-studio-git-production-kerosz.vercel.app
biolnk-studio.vercel.app