footer desktop

This commit is contained in:
2025-05-13 11:43:16 +03:00
parent a5ffa7ae13
commit 837c0f1fb6
8 changed files with 339 additions and 21 deletions

View File

@@ -1,11 +1,5 @@
import React from 'react'
interface ButtonProps {
onClick?: () => void
className?: string
text?: string
type?: 'button'
}
import { ButtonProps } from '@/app/types'
const Button = ({ onClick, className, text, type }: ButtonProps) => {
return (