Skip to content

Commit

Permalink
feat: add component conference location with head
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouissance-seeker committed Jan 20, 2024
1 parent 0fbe580 commit 74d5e1e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/app/components/ConferenceLocation.tsx
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>
);
}
2 changes: 2 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import ConferenceLocation from "./components/ConferenceLocation";
import Hero from "./components/Hero/Hero";
import Navbar from "@/components/Navbar";

Expand All @@ -6,6 +7,7 @@ export default function Home() {
<main>
<Navbar />
<Hero />
<ConferenceLocation />
</main>
);
}

0 comments on commit 74d5e1e

Please sign in to comment.