ccdp10003-project02/components/footer.tsx

12 lines
348 B
TypeScript
Raw Normal View History

import React from 'react';
2023-05-13 14:49:49 +10:00
import Menu from '@/components/menu';
export default function Footer() {
2023-05-13 14:49:49 +10:00
return (
<footer className='fixed bottom-0 w-screen h-24 py-2 flex justify-around'>
<p>The Myrtle Tree - A pitch for a game about sound and reliving memories.</p>
<p className='text-right'>By Rory Healy.</p>
</footer>
);
}