Compare commits
No commits in common. "a6ce98bff0282e77c5851a834994dd983d81b574" and "d1e4d1779db0c50406d85e04f0f241243e8f62fc" have entirely different histories.
a6ce98bff0
...
d1e4d1779d
|
|
@ -11,8 +11,11 @@ import {
|
||||||
CarouselPrevious,
|
CarouselPrevious,
|
||||||
type CarouselApi,
|
type CarouselApi,
|
||||||
} from "@/ui/carousel";
|
} from "@/ui/carousel";
|
||||||
|
<<<<<<< HEAD:app/components/untils/Carousel.tsx
|
||||||
import FireNewsList from "./FireNewsList";
|
import FireNewsList from "./FireNewsList";
|
||||||
|
=======
|
||||||
const imageUrls = [
|
const imageUrls = [
|
||||||
|
>>>>>>> 1d49f000efd9f3e6ac13da4e459b8e1e600c3335:app/components/Carousel.tsx
|
||||||
|
|
||||||
"/images/carousel-1.jpg",
|
"/images/carousel-1.jpg",
|
||||||
"/images/carousel-2.jpg",
|
"/images/carousel-2.jpg",
|
||||||
|
|
@ -59,12 +62,24 @@ export function CarouselDemo() {
|
||||||
<CarouselItem key={index}>
|
<CarouselItem key={index}>
|
||||||
<div className="p-1">
|
<div className="p-1">
|
||||||
<Card>
|
<Card>
|
||||||
|
<<<<<<< HEAD:app/components/untils/Carousel.tsx
|
||||||
|
<CardContent className="flex aspect-square items-center justify-center ">
|
||||||
|
<div
|
||||||
|
className="w-full h-full"
|
||||||
|
style={{
|
||||||
|
backgroundImage: "url('/app/images/header.png')",
|
||||||
|
backgroundSize: '100% 100%',
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
=======
|
||||||
<CardContent className="flex aspect-square items-center justify-center p-6">
|
<CardContent className="flex aspect-square items-center justify-center p-6">
|
||||||
<img
|
<img
|
||||||
src={src}
|
src={src}
|
||||||
alt={`Slide ${index + 1}`}
|
alt={`Slide ${index + 1}`}
|
||||||
className="w-full h-full object-cover"
|
className="w-full h-full object-cover"
|
||||||
/>
|
/>
|
||||||
|
>>>>>>> 1d49f000efd9f3e6ac13da4e459b8e1e600c3335:app/components/Carousel.tsx
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,6 @@ export default function Home() {
|
||||||
<div>
|
<div>
|
||||||
<Header />
|
<Header />
|
||||||
<TopNav />
|
<TopNav />
|
||||||
|
|
||||||
<NewsList />
|
<NewsList />
|
||||||
<ImageGridSection />
|
<ImageGridSection />
|
||||||
<Integrated />
|
<Integrated />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue