- Replaced arbitrary CSS values with standard Tailwind utilities (e.g., `bottom-[-18rem]` → `-bottom-72`, `mt-[-2rem]` → `-mt-8`) - Fixed invalid gradient syntax by removing `bg-` prefix from gradient utilities - Consolidated text styling by replacing inline elements with CT/CP text components - Adjusted CT component typography from semibold to medium for better visual hierarchy
12 lines
137 B
TypeScript
12 lines
137 B
TypeScript
import Homepod from './Homepod';
|
|
|
|
const PodsPage = () => {
|
|
return (
|
|
<>
|
|
<Homepod />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default PodsPage;
|