-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add component conference location with head
- Loading branch information
1 parent
0fbe580
commit 74d5e1e
Showing
2 changed files
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { RiFlagLine } from "react-icons/ri"; | ||
|
||
export default function ConferenceLocation() { | ||
return ( | ||
<section className="py-6 lg:py-12"> | ||
<div className="container space-y-16"> | ||
{/* head */} | ||
<div className="flex flex-col items-center gap-2"> | ||
<RiFlagLine className="size-12 fill-green-500 lg:size-16" /> | ||
<h3 className="text-2xl font-bold lg:text-3xl">محل برگزاری همایش</h3> | ||
</div> | ||
{/* body */} | ||
<div> | ||
|
||
</div> | ||
</div> | ||
</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