Skip to content

Commit

Permalink
updated style path
Browse files Browse the repository at this point in the history
  • Loading branch information
rNLKJA committed Dec 29, 2023
1 parent 8dc23fe commit c33c219
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pages/about-me.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Header from "../components/layout/Header";
import Footer from "../components/layout/Footer";
import Biography from "@/components/layout/about-me/biography";

import "../app/globals.css";
import "../styles/globals.css";

export default function Home() {
const theme = useTheme();
Expand Down
2 changes: 1 addition & 1 deletion pages/blogs/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import useMediaQuery from "@mui/material/useMediaQuery";
import Header from "../../components/layout/Header";
import Footer from "../../components/layout/Footer";

import "../../app/globals.css";
import "../../styles/globals.css";

export default function Home() {
const theme = useTheme();
Expand Down
2 changes: 1 addition & 1 deletion pages/contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Box from "@mui/material/Box";
import Typography from "@mui/material/Typography";
import Paper from "@mui/material/Paper";

import "../app/globals.css";
import "../styles/globals.css";

export default function ContactPage() {
const theme = useTheme();
Expand Down
2 changes: 1 addition & 1 deletion pages/privacy-policy.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Header from "../components/layout/Header";
import Footer from "../components/layout/Footer";
import PrivacyContent from "@/components/layout/index/PrivacyContent";

import "../app/globals.css";
import "../styles/globals.css";

const PrivacyPolicy = () => {
const theme = useTheme();
Expand Down
2 changes: 1 addition & 1 deletion pages/projects/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import useMediaQuery from "@mui/material/useMediaQuery";
import Header from "../../components/layout/Header";
import Footer from "../../components/layout/Footer";

import "../../app/globals.css";
import "../../styles/globals.css";

export default function Home() {
const theme = useTheme();
Expand Down
2 changes: 1 addition & 1 deletion pages/terms-of-service.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Header from "../components/layout/Header";
import Footer from "../components/layout/Footer";
import TermsComponent from "@/components/layout/index/Tos";

import "../app/globals.css";
import "../styles/globals.css";

// Functional Component
const TermsOfService = () => {
Expand Down

0 comments on commit c33c219

Please sign in to comment.