forked from Rosetta/landing
Добавить юридический футер
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
import { IconGauge, IconLock, IconMessage2, IconServer, IconUser, IconUsersGroup } from '@tabler/icons-react';
|
||||
import { IconGauge, IconLock, IconMessage2, IconServer, IconUser, IconUsersGroup, type TablerIcon } from '@tabler/icons-react';
|
||||
import { Container, Flex, SimpleGrid, Text, ThemeIcon, Title } from '@mantine/core';
|
||||
import type { ReactNode } from 'react';
|
||||
import classes from './FeaturesGrid.module.css';
|
||||
import { RosettaLogo } from '../RosettaLogo/RosettaLogo';
|
||||
|
||||
export const MOCKDATA = [
|
||||
const MOCKDATA = [
|
||||
{
|
||||
icon: IconGauge,
|
||||
title: 'Performance',
|
||||
@@ -43,9 +44,9 @@ export const MOCKDATA = [
|
||||
];
|
||||
|
||||
interface FeatureProps {
|
||||
icon: React.FC<any>;
|
||||
title: React.ReactNode;
|
||||
description: React.ReactNode;
|
||||
icon: TablerIcon;
|
||||
title: ReactNode;
|
||||
description: ReactNode;
|
||||
}
|
||||
|
||||
export function Feature({ icon: Icon, title, description }: FeatureProps) {
|
||||
@@ -94,4 +95,4 @@ export function FeaturesGrid() {
|
||||
</Container>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user