more button styled

This commit is contained in:
2024-04-01 14:19:30 +05:00
parent bc515a577c
commit e4874634f8
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -673,7 +673,7 @@ export default function App() {
</div>
<Winners />
{/* <Reviews /> */}
<Reviews />
<div className="flex flex-col 2xl:gap-16 xl:gap-10 gap-8 2xl:mb-[200px] sm:mb-[120px] mb-20">
<Heading2>Проекты</Heading2>
+2 -2
View File
@@ -2,11 +2,11 @@ import { motion } from "framer-motion";
import PlusIcon from "./icons/PlusIcon";
import ArrowIcon from "./icons/ArrowIcon";
interface MoreProjectButtonProps {
interface IMoreProjectButtonProps {
onClick?: () => void;
}
function MoreProjectButton({ onClick }: MoreProjectButtonProps) {
function MoreProjectButton({ onClick }: IMoreProjectButtonProps) {
return (
<motion.button
initial={{ opacity: 0 }}