import React from 'react'; // Meta Wrapper export interface MetaProps { description?: string; children?: React.ReactNode; } const MetaBase = ({ description = 'Carleton University', children, }: MetaProps) => { return ( <> {children}