diff --git a/app/components/Footer.css.ts b/app/components/Footer.css.ts index 416dc85..4abed2f 100644 --- a/app/components/Footer.css.ts +++ b/app/components/Footer.css.ts @@ -1,11 +1,11 @@ import { css } from "hono/css"; -const Layout = css` +const footerLayout = css` margin-top: 80px; `; -const Content = css` +const footerContent = css` padding: 20px 0; `; -export { Layout, Content }; +export { footerLayout, footerContent }; diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx index 310aa60..828415a 100644 --- a/app/components/Footer.tsx +++ b/app/components/Footer.tsx @@ -1,9 +1,9 @@ -import { Content, Layout } from "./Footer.css"; +import { footerContent, footerLayout } from "./Footer.css"; const Footer = () => { return ( -