Skip to content

Commit c88f8db

Browse files
committed
app(codename)
1 parent 354dbc4 commit c88f8db

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

src/pages/apps/CodenameGeneratorPage.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const CodenameGeneratorPage = () => {
8080
<span className="separator-color">::</span>
8181
<span className="apps-color">apps</span>
8282
<span className="separator-color">::</span>
83-
<span className="single-app-color">codename-generator</span>
83+
<span className="single-app-color">cg</span>
8484
</h1>
8585
<hr className="border-gray-700" />
8686
<div className="flex justify-center items-center mt-16">
@@ -100,7 +100,20 @@ const CodenameGeneratorPage = () => {
100100
<h1 className="text-3xl font-arvo font-normal mb-4 text-app"> Codename Generator </h1>
101101
<hr className="border-gray-700 mb-4" />
102102
<div className="flex flex-col items-center gap-8">
103-
<div className="text-4xl text-app font-arvo font-bold text-center h-16 mt-12">{codename}</div>
103+
<div className="relative text-4xl text-rose-600 font-bold text-center h-16 mt-12">
104+
<div
105+
className="absolute top-0 left-0 w-full h-full text-stone-950"
106+
style={{ fontFamily: 'Playfair Display, serif', transition: 'all 0.5s ease-in-out', transform: 'translate(4px, 4px)' }}
107+
>
108+
{codename}
109+
</div>
110+
<div
111+
className="relative"
112+
style={{ fontFamily: 'Playfair Display, serif', transition: 'all 0.5s ease-in-out' }}
113+
>
114+
{codename}
115+
</div>
116+
</div>
104117
<div className="flex gap-4">
105118
<button
106119
onClick={generateCodename}

0 commit comments

Comments
 (0)