You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
406 B
14 lines
406 B
import React from 'react';
|
|
|
|
import { Card } from '@app/components/generic/Card';
|
|
import { PrimaryTemplate } from '@components/templates/PrimaryTemplate';
|
|
|
|
export const About = (): JSX.Element => {
|
|
return (
|
|
<PrimaryTemplate title="meshtastic-web" tagline="About">
|
|
<Card title="Project desc" description="...">
|
|
<p className="p-10">Content</p>
|
|
</Card>
|
|
</PrimaryTemplate>
|
|
);
|
|
};
|
|
|