feat: add offer section

This commit is contained in:
2025-05-29 15:18:51 +03:00
parent c4cc79637b
commit 6bd23f4d2d
31 changed files with 358 additions and 16 deletions

View File

@@ -1 +1,2 @@
export { Button } from './button';
export { Mark } from './mark';

View File

@@ -0,0 +1 @@
export { default as Mark } from './mark';

View File

@@ -0,0 +1,3 @@
.Mark {
color: $color-orange;
}

View File

@@ -0,0 +1,14 @@
import s from './mark.module.scss';
import { ReactNode } from 'react';
type MarkProps = {
children: ReactNode;
};
export default function Mark({ children }: MarkProps) {
return (
<>
<span className={s.Mark}>{children}</span>
</>
);
}