portosaurus 1.18.15 → 1.18.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -130,4 +130,5 @@ module.exports = {
130
130
  - [Hugo Profile](https://hugo-profile.netlify.app/) - Design inspiration.
131
131
  - [Catppuccin](https://github.com/catppuccin/catppuccin) - Color scheme that inspired the site's palette.
132
132
  - [Deepseek R1](https://www.deepseek.com/) hosted using [Ollama](https://ollama.com/library/deepseek-r1) - prism.js theme & project card component.
133
+ - [Inkscape](https://inkscape.org/) - Icon drawing.
133
134
  - Countless Internet forum posts - Filling me with information.
@@ -305,7 +305,7 @@ program
305
305
  .description("Show the generated Docusaurus config")
306
306
  .option(
307
307
  "-f, --file [filePath]",
308
- "Output to a file (default: porto.docusaurus.config.js)",
308
+ "Output to a file (default: docusaurus.config.js)",
309
309
  )
310
310
  .option("-c, --config <path>", "Path to config file")
311
311
  .action(async (options) => {
@@ -335,7 +335,7 @@ program
335
335
 
336
336
  try {
337
337
  if (options.file) {
338
- let filename = "porto.docusaurus.config.js";
338
+ let filename = "docusaurus.config.js";
339
339
  if (typeof options.file === "string") {
340
340
  filename = options.file;
341
341
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "portosaurus",
3
- "version": "1.18.15",
3
+ "version": "1.18.16",
4
4
  "author": "soymadip",
5
5
  "license": "GPL-3.0-only",
6
6
  "description": "Complete portfolio cum personal website solution for your digital personality.",
@@ -25,7 +25,7 @@
25
25
  "#config/*": "./src/config/*",
26
26
  "#utils/*": "./src/utils/*.js",
27
27
  "#css/*": "./src/css/*.css",
28
- "#pages/*": "./src/internal/src/pages/*.js",
28
+ "#pages/*": "./src/pages/*.js",
29
29
  "#components/*": "./src/components/*",
30
30
  "#internal/*": "./src/internal/src/*"
31
31
  },
@@ -16,7 +16,7 @@ import styles from "./styles.module.css";
16
16
  import "slick-carousel/slick/slick.css";
17
17
  import "slick-carousel/slick/slick-theme.css";
18
18
 
19
- /// PART OF THIS COMPONENT IS AI GENERATED
19
+ // PART OF THIS COMPONENT IS AI GENERATED
20
20
 
21
21
  export default function ProjectsSection({ id, className, title, subtitle }) {
22
22
  const { siteConfig } = useDocusaurusContext();
@@ -2,7 +2,7 @@ import React from "react";
2
2
  import Layout from "@theme/Layout";
3
3
  import NoteCards from "#components/NoteIndex/index.js";
4
4
  import { usePluginData } from "@docusaurus/useGlobalData";
5
- import ScrollToTop from "#components/ScrollToTop/index.js";
5
+ import ScrollToTop from "../components/ScrollToTop/index.js";
6
6
  import HashNavigation from "../utils/HashNavigation.js";
7
7
 
8
8
  const style = {