Skip to content

Commit 68d9fa2

Browse files
committed
Create app banner component and ui
1 parent d8e824e commit 68d9fa2

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

src/components/AppBanner.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
const AppBanner = () => {
2+
return (
3+
<section class="flex flex-col sm:justify-between items-center sm:flex-row mt-12 sm:mt-2">
4+
<div class="w-full sm:w-1/3 text-left">
5+
<h1 class="text-3xl sm:text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase">
6+
Hi, Iam Stoman
7+
</h1>
8+
<p class="mt-4 text-2xml sm:text-4xl text-center sm:text-left font-semibold leading-none text-gray-400">
9+
A Full-Stack Developer & Design Enthusiast
10+
</p>
11+
<div class="flex justify-center sm:block">
12+
<a
13+
download="Stoman-Resume.pdf"
14+
href="/files/Stoman-Resume.pdf"
15+
class="flex justify-center items-center w-36 sm:w-48 mt-12 mb-6 sm:mb-0 text-lg border border-indigo-200 dark:border-ternary-dark py-2.5 sm:py-3 shadow-lg rounded-xl bg-indigo-50 focus:ring-1 focus:ring-indigo-900 hover:bg-indigo-500 text-gray-500 hover:text-white"
16+
aria-label="Download Resume"
17+
>
18+
<i
19+
data-feather="arrow-down-circle"
20+
class="ml-0 sm:ml-1 mr-2 sm:mr-3 w-5 sm:w-6"
21+
></i>
22+
<span class="text-sm sm:text-lg">Download CV</span>
23+
</a>
24+
</div>
25+
</div>
26+
<div class="w-full sm:w-2/3 text-right float-right mt-8 sm:mt-0">
27+
<img src="@/assets/images/developer.svg" alt="Developer" />
28+
</div>
29+
</section>
30+
);
31+
};
32+
33+
export default AppBanner;

0 commit comments

Comments
 (0)