diff --git a/src/Sections/Card.css b/src/Sections/Card.css new file mode 100644 index 00000000..d32d59ae --- /dev/null +++ b/src/Sections/Card.css @@ -0,0 +1,34 @@ +.card { + width: 300px; + height: 200px; + background-color:white; + border-radius: 10px; + border-color: beige; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + padding: 20px; + text-align: center; + } + + .card h2 { + margin-top: 0; + color: #333333; + } + + .card p { + color: #666666; + } + .img { + width: 100%; + height: auto; + display: block; + } + .card:hover { + transform: scale(1.05); + box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); + } + @media (max-width: 640px) { + .sm\:grid-cols-1 { + grid-template-columns: 1fr; + } + } + diff --git a/src/Sections/Home.tsx b/src/Sections/Home.tsx index 0a95dabc..873043b3 100644 --- a/src/Sections/Home.tsx +++ b/src/Sections/Home.tsx @@ -4,14 +4,17 @@ import { TextGenerateEffect } from "@/components/ui/text-generate-effect"; import { AboutUs } from "./AboutUs"; import { Events } from "./Events"; import { Stats } from "./Stats"; -import { Sponsors } from "./Sponsors"; + import { Developers } from "./Developers"; import { Footer } from "@/components/Footer"; import { Team } from "./Team"; + +import { Sponsors } from "./Sponsors"; import { ScrollToTopButton } from "@/components/ScrollToTopButton"; import { Talks } from "./Talks"; import { Link } from "react-router-dom"; + export const Home = () => { return (