Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b857533

Browse files
committed
feat: make shit glowup
1 parent 0dd20d3 commit b857533

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

public/blogs/branded-types.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ firstModDate: 2024-04-27T09:15:00-0401
99
minutesToRead: 3
1010
tags:
1111
- 'typescript'
12-
- 'quality'
12+
- 'typing'
1313
---
1414

1515
<C>

src/app/(pages)/services/page.tsx

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function Component() {
3131
x: 0,
3232
}}
3333
transition={transition}
34-
className="dimmed-4 text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl"
34+
className="glows-dimmed dimmed-4 text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl"
3535
>
3636
Expert Consulting. Custom Solutions.
3737
</motion.h2>
@@ -75,8 +75,10 @@ export default function Component() {
7575
className="border order-white/10b p-4 rounded-[2rem] glowsup-dimmed slower-transition hover:slower-translate hover:scale-110 slower-transition shadow hover:shadow-[0px_4px_88px_0px_var(--deeper-purple)]"
7676
>
7777
<div className="flex flex-col gap-2 m-1 items-center">
78-
<ScanEye className="w-10 h-10 mx-auto" />
79-
<h3 className="dimmed-4 text-2xl font-bold">Consulting</h3>
78+
<ScanEye className="glows-dimmed w-10 h-10 mx-auto" />
79+
<h3 className="glows-dimmed dimmed-4 text-2xl font-bold">
80+
Consulting
81+
</h3>
8082
<p className="text-center md:text-base/relaxed dimmed-1">
8183
Migrate to the cloud with confidence. Our team can help you
8284
design and deploy a scalable, secure architecture.
@@ -88,8 +90,10 @@ export default function Component() {
8890
className="border order-white/10b p-4 rounded-[2rem] glowsup-dimmed slower-transition hover:slower-translate hover:scale-110 slower-transition shadow hover:shadow-[0px_4px_88px_0px_var(--deeper-purple)]"
8991
>
9092
<div className="flex flex-col gap-2 m-1 items-center">
91-
<Presentation className="w-10 h-10 mx-auto" />
92-
<h3 className="dimmed-4 text-2xl font-bold">Training</h3>
93+
<Presentation className="glows-dimmed w-10 h-10 mx-auto" />
94+
<h3 className="glows-dimmed dimmed-4 text-2xl font-bold">
95+
Training
96+
</h3>
9397
<p className="text-center md:text-base/relaxed dimmed-1">
9498
Book me for both on-site and virtual presentations, training
9599
and coaching to share my expertise and domain knowledge with
@@ -102,8 +106,8 @@ export default function Component() {
102106
className="border order-white/10b p-4 rounded-[2rem] glowsup-dimmed slower-transition hover:slower-translate hover:scale-110 slower-transition shadow hover:shadow-[0px_4px_88px_0px_var(--deeper-purple)]"
103107
>
104108
<div className="flex flex-col gap-2 m-1 items-center">
105-
<Computer className="w-10 h-10 mx-auto" />
106-
<h3 className="text-2xl font-bold dimmed-4">
109+
<Computer className="glows-dimmed w-10 h-10 mx-auto" />
110+
<h3 className="glows-dimmed text-2xl font-bold dimmed-4">
107111
Software Solutions
108112
</h3>
109113
<p className="text-center md:text-base/relaxed dimmed-1">

src/app/components/protos/hero-section.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ export default function HeroSection() {
8787
>
8888
<TextContent>
8989
Welcome to my corner of the internet where I share my thoughts
90-
and conduct business. You can read my blogs or checkout my
91-
services, or learn more about me
90+
and conduct my business. You can read my blogs or checkout my
91+
services, or learn more about me, and if you like what you see
9292
</TextContent>
9393
</motion.div>
9494
</div>
@@ -108,7 +108,9 @@ export default function HeroSection() {
108108
delay: 3,
109109
}}
110110
>
111-
<Button type="submit">Let's build something great</Button>
111+
<Button className="w-full glowsup" variant={'navbar'}>
112+
Let's build something great
113+
</Button>
112114
</motion.div>
113115
</div>
114116
</div>

src/app/styles/custom.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@
4343
filter: drop-shadow(0 0 0.75rem var(--deeper-purple));
4444
}
4545
.glows {
46-
/* Major text I */
4746
filter: drop-shadow(0 0 0.75rem var(--deeper-purple));
4847
}
48+
.glows-dimmed {
49+
filter: drop-shadow(0 0 0.75rem var(--deeper-purple-dimmed));
50+
}
4951
.glowsup-dimmed:hover {
5052
/* Major text II */
5153
filter: drop-shadow(0 0 0.75rem var(--deeper-purple-dimmed));

0 commit comments

Comments
 (0)