Skip to content

Commit

Permalink
styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Smnthjm08 committed Apr 2, 2024
1 parent ab75126 commit 4603300
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const mongoose = require("mongoose");
// import connect-mongo and pass session
const MongoStore = require("connect-mongo");
const connectDB = require("./server/config/db");

const app = express();
const port = process.env.PORT || 3000;

Expand Down
2 changes: 1 addition & 1 deletion views/layouts/admin.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= locals.title %></title>
<meta name="description" content="<%= locals.description %>">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/public/css/style.css">
<script type="text/javascript" defer src="/js/script.js"></script>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion views/layouts/main.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= locals.title %></title>
<meta name="description" content="<%= locals.description %>" >
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="/css/style.css">
<script type="text/javascript" defer src="/js/script.js" ></script>
</head>
<body>
Expand Down

0 comments on commit 4603300

Please sign in to comment.