Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added description on the Homepage #288

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions site/components/Description.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { Dribbble, Facebook, Linkedin, Twitch, Twitter } from "lucide-react";
import { Instagram } from "lucide-react";
export default function Description(){
return(
<div className="ml-[200px]">
<div className="flex my-[100px]">
<div className="">
<div className="text-3xl font-bold mt-28">Your Online Presence, All in One Branch!</div>
<div className=" ">BioBranch makes it effortless to manage and showcase all your social media profiles and important links in one stunning, customizable page.</div>
</div>

<div className="w-1/2">
<div className="flex justify-center my-10 ml-4">
<Facebook className="h-10 w-10"/>
<Twitter className="h-10 w-10 ml-14"/>
</div>
<div className="flex my-[50px] ml-14">
<Linkedin className="h-10 w-10 ml-10"/>
<Instagram className="h-10 w-10 ml-[220px]"/>
</div>
<div className="flex mt-[20px] justify-center ml-4">
<Twitch className="h-10 w-10 ml-10"/>
<Dribbble className="h-10 w-10 ml-14"/>
</div>
</div>

</div>
</div>
)
}
2 changes: 2 additions & 0 deletions site/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Creators from '@/components/Creators'
import DetailsCard from '@/components/DetailsCard'
import Faq from '@/components/Faq'
import Process from '@/components/Process'
import Description from '@/components/Description'

export default function Home() {
return (
Expand All @@ -16,6 +17,7 @@ export default function Home() {
/>

<main className="w-full min-h-screen flex flex-col justify-center items-center">
<Description/>
<Creators/>
<DetailsCard/>
<Faq/>
Expand Down