import { fluxgore } from "@/utils/fonts";
import Button from "./Button";
interface CoverHeadingProps {
children: React.ReactNode;
textPosition?: "left" | "right";
}
function CoverHeading({ children, textPosition }: CoverHeadingProps) {
const textAlign = textPosition || "left";
return (
{/* Shadow layer */}
{textAlign === "left" && (
{children}
)}
{textAlign === "right" && (
{children}
)}
{/* Main text */}
{children}
);
}
function DateBox() {
return (
);
}
function Cover() {
return (
{/* Top row with ФЕСТИВАЛЬ and date box */}
ФЕСТИВАЛЬ
ТЕХНИЧЕСКИХ
ВИДОВ СПОРТА
);
}
function CoverSoon() {
return (
{/* Top row with ФЕСТИВАЛЬ and date box */}
ФЕСТИВАЛЬ
ТЕХНИЧЕСКИХ
ВИДОВ СПОРТА
);
}
export { CoverSoon };
export default Cover;