diff --git a/src/components/AppsBar.tsx b/src/components/AppsBar.tsx index 293e4a0..a662d23 100644 --- a/src/components/AppsBar.tsx +++ b/src/components/AppsBar.tsx @@ -6,8 +6,8 @@ import Brightness7Icon from "@mui/icons-material/Brightness7"; import Link from "next/link"; const link = [ - { title: "about", link: "/about" }, - { title: "blog", link: "/blog" }, + { title: "Home", link: "/about" }, + { title: "log", link: "/blog" }, ]; export default function AppsBar() { @@ -15,9 +15,19 @@ export default function AppsBar() { return ( - - - + + +
    {link.map((item, index) => { return ( diff --git a/src/layouts/AppsContainer.tsx b/src/layouts/AppsContainer.tsx index 4082022..8caac5a 100644 --- a/src/layouts/AppsContainer.tsx +++ b/src/layouts/AppsContainer.tsx @@ -6,6 +6,8 @@ import { NextSeoProps } from "next-seo/lib/types"; import Header from "@layouts/Header"; import AppsBar from "@components/AppsBar"; +import useTheme from "@mui/material/styles/useTheme"; + interface props { children: React.ReactNode; basicSeo?: NextSeoProps; @@ -13,8 +15,14 @@ interface props { export default function AppsContainer(AppsContainerProps: props) { const { children, basicSeo, ...rest } = AppsContainerProps; + const theme = useTheme(); + return ( - + {children} diff --git a/src/layouts/Footer.tsx b/src/layouts/Footer.tsx index 22100d9..963aba3 100644 --- a/src/layouts/Footer.tsx +++ b/src/layouts/Footer.tsx @@ -1,9 +1,27 @@ +import { Box, Typography } from "@mui/material"; +import Image from "next/image"; import React from "react"; export default function Footer() { return ( -
    -

    footer

    -
    + + + NextJS-MUI-boilerplate logo + + Next-MUI-boilerplate + ); } diff --git a/src/modules/brandingTheme.ts b/src/modules/brandingTheme.ts index 70d1319..8a2ddf6 100644 --- a/src/modules/brandingTheme.ts +++ b/src/modules/brandingTheme.ts @@ -1,4 +1,5 @@ import { Rubik } from "@next/font/google"; +import { Poppins } from "@next/font/google"; export const blue = { 50: "#F0F7FF", @@ -31,7 +32,7 @@ export const blueDark = { const rubik = Rubik({ variable: "--rubik-font", subsets: ["latin"], - weight: ["400"], + weight: ["600"], }); const systemFont = [ diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 49ce001..7081365 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -12,7 +12,7 @@ export default function Home() { return ( - +

    Title

    diff --git a/tsconfig.json b/tsconfig.json index 653e1ff..18e4864 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,9 +18,7 @@ "paths": { "@components/*": ["src/components/*"], "@layouts/*": ["src/layouts/*"], - "@modules/*": ["src/modules/*"], - "@types/*": ["lib/types/*"], - "@utils/*": ["lib/utils/*"] + "@modules/*": ["src/modules/*"] } }, "include": [ @@ -29,7 +27,8 @@ "**/*.tsx", "cypress/tsconfig.json", "next-i18next.config.js", - "next-i18next.config.js" + "next-i18next.config.js", + "next-sitemap.config.js" ], "exclude": ["node_modules"] }