Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default async function Home() {
className="object-cover"
priority
/>
<div className="absolute inset-0 bg-black/15 flex items-center px-6">
<div className="absolute inset-0 bg-black/5 flex items-center px-6">
<h2 className="text-3xl font-bold text-white leading-tight">
Welcome to the ASSU Website.
</h2>
Expand Down
4 changes: 2 additions & 2 deletions components/common/ImageCarousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function ImageCarousel() {
key={index}
className={`pl-4 ${index === currentSlide ? "block" : "hidden"}`}
>
<div className="relative h-[500px] w-full">
<div className="relative h-[560px] w-full">
<Image
data-testid={`carousel-image-${index}`}
src={slide.src}
Expand All @@ -57,7 +57,7 @@ export function ImageCarousel() {
className="object-cover rounded-lg"
priority
/>
<div className="absolute inset-0 bg-black/15 flex items-center px-8">
<div className="absolute inset-0 bg-black/5 flex items-center px-8">
<div className="ml-12 max-w-sm text-left text-white">
<h2
data-testid={`carousel-heading-${index}`}
Expand Down
Loading