fix build
This commit is contained in:
gofnnp 2025-06-12 21:47:52 +04:00
parent f71ff66ace
commit f83f3aae2e
5 changed files with 4 additions and 6 deletions

View File

@ -2,7 +2,6 @@ import Image from "next/image";
import Card from "../ui/Card/Card" import Card from "../ui/Card/Card"
import Typography from "../ui/Typography/Typography" import Typography from "../ui/Typography/Typography"
import styles from "./CompatibilityCard.module.scss" import styles from "./CompatibilityCard.module.scss"
import IconLabel from "../ui/IconLabel/IconLabel";
import { IconName } from "../ui/Icon/Icon"; import { IconName } from "../ui/Icon/Icon";
import MetaLabel from "../ui/MetaLabel/MetaLabel"; import MetaLabel from "../ui/MetaLabel/MetaLabel";

View File

@ -2,9 +2,8 @@ import Image from "next/image";
import Card from "../ui/Card/Card" import Card from "../ui/Card/Card"
import Typography from "../ui/Typography/Typography" import Typography from "../ui/Typography/Typography"
import styles from "./PalmCard.module.scss" import styles from "./PalmCard.module.scss"
import Icon, { IconName } from "../ui/Icon/Icon"; import { IconName } from "../ui/Icon/Icon";
import MetaLabel from "../ui/MetaLabel/MetaLabel"; import MetaLabel from "../ui/MetaLabel/MetaLabel";
import Button from "../ui/Button/Button";
export default function PalmCard() { export default function PalmCard() {
return ( return (

View File

@ -11,7 +11,7 @@ type GridProps = {
}; };
export default function Grid({ children, columns = 3, gap = 16, className, style }: GridProps) { export default function Grid({ children, columns = 3, gap = 16, className, style }: GridProps) {
let gridTemplateColumns = `repeat(${columns}, 1fr)` const gridTemplateColumns = `repeat(${columns}, 1fr)`
return ( return (
<div <div

View File

@ -1,6 +1,6 @@
import { ReactNode } from "react"; import { ReactNode } from "react";
import clsx from "clsx"; import clsx from "clsx";
import Icon, { IconName, IconProps } from "../Icon/Icon"; import Icon, { IconProps } from "../Icon/Icon";
import styles from "./IconLabel.module.scss"; import styles from "./IconLabel.module.scss";
export type IconLabelProps = { export type IconLabelProps = {

View File

@ -1,7 +1,7 @@
.section { .section {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: start; align-items: flex-start;
gap: 24px; gap: 24px;
} }