forked from emre/www_projectmycelium_com
refactor: standardize Tailwind class syntax and component usage
- 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
This commit is contained in:
11
src/pages/pods/PodsPage.tsx
Normal file
11
src/pages/pods/PodsPage.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import Homepod from './Homepod';
|
||||
|
||||
const PodsPage = () => {
|
||||
return (
|
||||
<>
|
||||
<Homepod />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default PodsPage;
|
||||
Reference in New Issue
Block a user