import React from "react"; import { Box, Grid, Typography, keyframes } from "@mui/material"; import image1 from "../images/caraone.png"; import image2 from "../images/caraone.png"; // Define keyframe animations const fadeIn = keyframes` from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } `; const LandingPageSection: React.FC = () => { return ( {/* Top Section */} Experience EXPERIENCES We Provide You The Best Experience You don't have to worry about the result because all of these interiors are made by people who are professionals in their fields with an elegant and luxurious style and with premium quality materials. More Info → {/* Bottom Section */} MATERIALS Very Serious Materials For Making Furniture Because Panto was very serious about designing furniture for our environment, using a very expensive and famous capital but at a relatively low price. More Info → {[image1, image2, image1, image2].map((img, i) => ( {`Gallery ))} ); }; export default LandingPageSection;