File tree Expand file tree Collapse file tree
apps/web/src/app/(main)/testimonials Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ const getSocialIcon = (url: string) => {
5858const 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" >
You can’t perform that action at this time.
0 commit comments