Skip to content

Commit 468a231

Browse files
committed
Nit consistency and uprez blog images
1 parent 9019af9 commit 468a231

11 files changed

+46
-54
lines changed

public/images/desert.png

-928 KB
Binary file not shown.

public/images/moon.png

2.76 MB
Loading

public/images/seedling.png

1.23 MB
Loading

src/app/(rest)/blog/[slug]/page.tsx

+7-7
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,27 @@ export default async function Page({ params }: Props) {
3535

3636
return (
3737
<div className="flex min-h-screen flex-col items-center gap-16 p-4 py-32">
38-
<div className="flex w-full max-w-5xl flex-col items-start space-y-8">
38+
<div className="flex w-full max-w-5xl flex-col items-start space-y-6">
3939
<div className="relative h-96 w-full overflow-hidden">
4040
<CustomImage
4141
src={metadata.bannerImageUrl}
4242
alt={metadata.title}
4343
className="object-cover object-middle"
4444
/>
4545
</div>
46-
<div className="flex w-full justify-between text-secondary text-sm">
46+
<div className="grid w-full grid-cols-3 text-secondary text-sm">
4747
<p>{metadata.category}</p>
48-
<p>by {metadata.author}</p>
49-
<p>{formatDate(metadata.date)}</p>
48+
<p className="text-center">by {metadata.author}</p>
49+
<p className="text-right">{formatDate(metadata.date)}</p>
5050
</div>
5151
<article className="mx-auto max-w-full sm:max-w-2xl">
5252
<div className="flex flex-col gap-2">
5353
<h1>{metadata.title}</h1>
54-
{metadata.subtitle ? <h3 className="opacity-80">{metadata.subtitle}</h3> : null}
54+
{metadata.subtitle ? <h3 className="text-secondary">{metadata.subtitle}</h3> : null}
5555
</div>
5656
<Post />
57-
<div className="flex items-center justify-center">
58-
<Link href="/contact" className="no-underline">
57+
<div className="mt-8 flex items-center justify-center">
58+
<Link href="/contact">
5959
<Button>Get in touch</Button>
6060
</Link>
6161
</div>

src/app/(rest)/blog/card.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const Card = ({
3131
<p className="max-w-full pt-4 text-lg">{post.title}</p>
3232
<div className="flex items-center gap-4 text-sm">
3333
<p>{post.category}</p>
34-
<p className="opacity-50">{formatDate(post.date)}</p>
34+
<p className="text-secondary">{formatDate(post.date)}</p>
3535
</div>
3636
</Link>
3737
)

src/app/globals.css

+20-23
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@
22

33
:root {
44
--primary: black;
5-
--secondary: #808080;
5+
--secondary: #666;
66
--background: #f5f0ec;
7-
--subtle: #e5e5e5;
7+
--negative: #222;
8+
--subtle: #ddd;
89
--danger: red;
910
}
1011

1112
@media (prefers-color-scheme: dark) {
1213
:root {
1314
--primary: white;
14-
--secondary: #808080;
15+
--secondary: #999;
1516
--background: black;
17+
--negative: #ddd;
1618
--subtle: #222;
1719
--danger: red;
1820
}
@@ -22,6 +24,7 @@
2224
--color-primary: var(--primary);
2325
--color-background: var(--background);
2426
--color-subtle: var(--subtle);
27+
--color-negative: var(--negative);
2528
--color-secondary: var(--secondary);
2629
--color-danger: var(--danger);
2730
--radius-custom: 1.75rem;
@@ -45,7 +48,7 @@
4548
}
4649

4750
a:not(:has(button)) {
48-
@apply focus:outline-none opacity-90 hover:opacity-100 transition-opacity;
51+
@apply focus:outline-none text-secondary hover:text-primary transition-colors;
4952
}
5053

5154
input,
@@ -61,12 +64,19 @@
6164
@apply space-y-4;
6265
}
6366

64-
article a {
65-
@apply underline underline-offset-4 decoration-dashed hover:decoration-solid;
67+
article h1,
68+
article h2,
69+
article h3 {
70+
@apply mt-8;
6671
}
6772

68-
article p {
69-
@apply opacity-90;
73+
article a:not(:has(button)) {
74+
@apply underline underline-offset-3 decoration-1 hover:decoration-4;
75+
}
76+
77+
article p,
78+
li {
79+
@apply text-secondary;
7080
}
7181

7282
li {
@@ -228,7 +238,7 @@
228238

229239
.video-controls button {
230240
cursor: pointer;
231-
opacity: 0.85;
241+
opacity: 0.9;
232242
transition: opacity 0.2s ease;
233243
}
234244

@@ -243,19 +253,6 @@
243253
z-index: 999;
244254
}
245255

246-
.video-inner-container.is-floating:after {
247-
content: "";
248-
position: absolute;
249-
top: -2px;
250-
left: -2px;
251-
right: -2px;
252-
bottom: -2px;
253-
background: black;
254-
border-radius: 0.6rem;
255-
z-index: -1;
256-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
257-
}
258-
259256
.video-inner-container.is-floating video {
260257
border-radius: 0.5rem !important;
261258
outline: none;
@@ -327,7 +324,7 @@
327324
/* Codeblocks */
328325

329326
code {
330-
@apply bg-neutral-100 dark:bg-neutral-900 rounded py-0.5 px-1.5 text-[13px];
327+
@apply bg-black/10 dark:bg-white/10 rounded py-0.5 px-1.5 text-[13px];
331328
}
332329

333330
code[data-theme] {

src/lib/posts/personalized-video-at-scale.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const metadata = {
44
title: "Leveraging AI to create personalized video at scale",
55
date: "2023-12-19",
66
author: "Sarim Malik",
7-
bannerImageUrl: "/images/desert.png",
7+
bannerImageUrl: "/images/moon.png",
88
category: "AI",
99
description: "Rubric Labs worked with Graphite to build Year in Code: a personalized video for developers to showcase their hard work in 2023. Building on the legacy of GitHub Wrapped, we used the latest tools to generate unique videos, fast and at scale, for thousands of developers."
1010
}

src/ui/button.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const variants = {
55
'bg-black/10 dark:bg-subtle dark:enabled:hover:bg-white/20 enabled:hover:bg-black/20 rounded-full',
66
outline:
77
'border-subtle border dark:enabled:hover:border-white/20 enabled:hover:border-black/20 rounded-full',
8-
link: 'enabled:hover:opacity-80 focus:ring-0 !p-0',
9-
icon: 'focus:ring-0 !p-1 rounded dark:enabled:hover:bg-white/20 enabled:hover:bg-black/20'
8+
link: 'text-secondary enabled:hover:text-primary focus:ring-0 !p-0',
9+
icon: 'focus:ring-0 !p-1.5 rounded dark:enabled:hover:bg-white/20 enabled:hover:bg-black/20'
1010
} as const
1111

1212
const sizes = {

src/ui/custom-image.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const CustomImage = ({
1313
) : (
1414
<img {...props} alt={props.alt || 'Blog image'} className={cn('h-full', props.className)} />
1515
)}
16-
{props.title ? <span className="text-center text-sm opacity-80">{props.title}</span> : null}
16+
{props.title ? <span className="text-center text-secondary text-sm">{props.title}</span> : null}
1717
</span>
1818
)
1919
}

src/ui/nav.tsx

+5-10
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,23 @@ export function Nav() {
2525
useShortcut('w', () => router.push('/work'))
2626

2727
return (
28-
<nav
29-
className={cn(
30-
'group fixed top-0 left-0 z-30 flex w-full items-center pt-4 pl-1 sm:justify-between sm:pt-2 sm:pl-4'
31-
)}
32-
>
28+
<nav className={cn('group fixed top-0 left-0 z-30 flex w-full items-start sm:justify-between')}>
3329
<div
3430
className={cn(
35-
'flex h-10 items-center justify-center rounded-full border px-3 transition-all duration-300 sm:px-6',
31+
'flex items-center justify-center rounded-br-custom px-4 py-4 transition-all duration-300 sm:px-6',
3632
scrollDirection === 'down' ? 'opacity-0' : 'opacity-100',
37-
scrollY > 0 ? 'border-subtle bg-background' : 'border-transparent'
33+
scrollY > 0 ? 'bg-background' : ''
3834
)}
3935
>
4036
<Link href="/" className="whitespace-nowrap text-xl">
4137
Rubric Labs
4238
</Link>
4339
</div>
44-
4540
<div
4641
className={cn(
47-
'flex h-10 items-center gap-6 rounded-full border px-2 transition-all duration-300 sm:px-6',
42+
'flex items-center gap-6 rounded-bl-custom px-6 py-4 transition-all duration-300',
4843
scrollDirection === 'down' ? 'opacity-0' : 'opacity-100',
49-
scrollY > 0 ? 'border-subtle bg-background' : 'border-transparent',
44+
scrollY > 0 ? 'bg-background' : '',
5045
'invisible sm:visible'
5146
)}
5247
>

src/ui/testimonials.tsx

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Link from 'next/link'
33
export const Testimonials = () => {
44
return (
55
<div className="w-full max-w-2xl space-y-20 sm:text-justify">
6-
<div className="flex flex-col gap-4">
6+
<div className="flex flex-col">
77
<p>
88
<span className="text-secondary/50">
99
"Rubric was an absolute pleasure to work with. They were available to meet on short notice and
@@ -15,14 +15,14 @@ export const Testimonials = () => {
1515
is impressive. I will definitely be working with the Rubric team again soon."
1616
</span>
1717
</p>
18-
<span className="self-end text-secondary/50">
19-
- Daniel Bevan, CTO of{' '}
18+
<span className="self-end text-secondary/50 text-xs">
19+
Daniel Bevan, CTO of{' '}
2020
<Link className="opacity-50" href="/work#Sligo">
2121
Sligo
2222
</Link>
2323
</span>
2424
</div>
25-
<div className="flex flex-col gap-4">
25+
<div className="flex flex-col">
2626
<p>
2727
<span className="text-secondary/50">
2828
"In just a few weeks, Rubric went from initial concepts to delivering an engaging AI video
@@ -34,14 +34,14 @@ export const Testimonials = () => {
3434
mile to follow through and iterate with us even after initial handoff."
3535
</span>
3636
</p>
37-
<span className="self-end text-secondary/50">
38-
- Merrill Lutsky, Co-Founder of{' '}
37+
<span className="self-end text-secondary/50 text-xs">
38+
Merrill Lutsky, Co-Founder of{' '}
3939
<Link className="opacity-50" href="/work#Graphite">
4040
Graphite
4141
</Link>
4242
</span>
4343
</div>
44-
<div className="flex flex-col gap-4">
44+
<div className="flex flex-col">
4545
<p>
4646
<span className="text-secondary/50">
4747
"Working with Rubric has been like having a CTO in our back pocket. They pair the best in
@@ -53,8 +53,8 @@ export const Testimonials = () => {
5353
trusting them with our MVP build and every iteration since was the right choice."
5454
</span>
5555
</p>
56-
<span className="self-end text-secondary/50">
57-
- Mitchell White, Founder of{' '}
56+
<span className="self-end text-secondary/50 text-xs">
57+
Mitchell White, Founder of{' '}
5858
<Link className="opacity-50" href="/work#Weave">
5959
Weave
6060
</Link>

0 commit comments

Comments
 (0)