oxen-website/components/Footer.tsx

15 lines
334 B
TypeScript

import React from 'react';
import { Contained } from './Contained';
export function Footer() {
return (
<div className="bg-primary py-6 text-center mt-10">
<Contained>
<div className="font-sans text-base text-white font-medium desktop:text-sm">
c c c
</div>
</Contained>
</div>
);
}