Skip to content

Commit fd7378f

Browse files
committed
chore: fix design token practice
1 parent 7463d5a commit fd7378f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • apps/web/src/app/(main)/testimonials

apps/web/src/app/(main)/testimonials/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const getSocialIcon = (url: string) => {
5858
const TestimonialCard = ({ item }: { item: Testimonial }) => {
5959
if (item.type === "image") {
6060
return (
61-
<div className="mb-4 break-inside-avoid rounded-xl border border-[#252525] bg-neutral-900/50 overflow-hidden hover:border-neutral-700 transition-colors p-2">
61+
<div className="mb-4 break-inside-avoid rounded-xl border border bg-neutral-900/50 overflow-hidden hover:border-neutral-700 transition-colors p-2">
6262
<div className="relative w-full">
6363
<Image
6464
src={item.imageUrl}
@@ -77,7 +77,7 @@ const TestimonialCard = ({ item }: { item: Testimonial }) => {
7777
: null;
7878

7979
return (
80-
<div className="mb-4 break-inside-avoid rounded-xl border border-[#252525] bg-neutral-900/50 p-6 hover:border-neutral-700 transition-colors flex flex-col gap-4">
80+
<div className="mb-4 break-inside-avoid rounded-xl border border bg-neutral-900/50 p-6 hover:border-neutral-700 transition-colors flex flex-col gap-4">
8181
<div className="flex items-center gap-3">
8282
<div className="relative w-10 h-10 rounded-full overflow-hidden border border-white/10">
8383
<Image
@@ -154,7 +154,7 @@ const TestimonialsPage = () => {
154154
}, [allTestimonials]);
155155

156156
return (
157-
<main className="min-h-screen w-full bg-[#101010] text-white font-sans overflow-hidden relative">
157+
<main className="min-h-screen w-full bg-surface-primary text-white font-sans overflow-hidden relative">
158158
<Navbar />
159159

160160
<div className="min-h-screen w-full max-w-[2000px] mx-auto border-x border-border overflow-hidden pt-24 pb-20 px-4 md:px-6 lg:px-10">

0 commit comments

Comments
 (0)