Skip to content

Commit a60826e

Browse files
committed
2 parents a24bfb3 + 43c16dd commit a60826e

File tree

6 files changed

+111
-9
lines changed

6 files changed

+111
-9
lines changed

index.html

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313

1414
<!-- Open Graph / Facebook -->
1515
<meta property="og:type" content="website" />
16-
<meta property="og:url" content="https://dev2forge.software/" />
16+
<meta property="og:url" content="https://www.dev2forge.software/" />
1717
<meta property="og:title" content="Dev2Forge: Tools for Developers & Everyday Users" />
1818
<meta property="og:description" content="Dev2Forge: Ready-to-use tools for automating tasks, solving problems, and streamlining workflows. Efficient software solutions for your business." />
1919
<meta property="og:image" content="https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/others/metatag-dev2forge1.jpeg" />
2020

2121
<!-- Twitter -->
2222
<meta property="twitter:card" content="summary_large_image" />
23-
<meta property="twitter:url" content="https://dev2forge.software/" />
23+
<meta property="twitter:url" content="https://www.dev2forge.software/" />
2424
<meta property="twitter:title" content="Dev2Forge: Tools for Developers & Everyday Users" />
2525
<meta property="twitter:description" content="Dev2Forge: Ready-to-use tools for automating tasks, solving problems, and streamlining workflows. Efficient software solutions for your business." />
2626
<meta property="twitter:image" content="https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/others/metatag-dev2forge1.jpeg" />
@@ -33,8 +33,8 @@
3333
<link rel="manifest" href="/public/favicons/site.webmanifest" />
3434
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
3535

36-
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js" integrity="sha512-LhccdVNGe2QMEfI3x4DVV3ckMRe36TfydKss6mJpdHjNFiV07dFpS2xzeZedptKZrwxfICJpez09iNioiSZ3hA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
37-
<script src="https://cdn.tailwindcss.com"></script>
36+
<script defer src="./src/utils/showdown/showdown.min.js"></script>
37+
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4" defer></script>
3838
<link rel="stylesheet" href="./src/assets/css/index.css" />
3939
<script type="module" src="./src/assets/js/main.js" defer></script>
4040

@@ -47,13 +47,27 @@
4747
gtag('js', new Date());
4848
gtag('config', 'G-74L9F7VNLD');
4949
</script>
50+
51+
<!-- robots.txt -->
52+
<meta name="robots" content="index, follow" />
53+
54+
<!-- Schema.org (JSON-LD) -->
55+
<script type="application/ld+json">
56+
{
57+
"@context": "https://schema.org","@type": "Organization","name": "Dev2Forge","url": "https://www.dev2forge.software/","logo": "https://www.dev2forge.software/public/dev2forge-logo.png",
58+
"description": "Dev2Forge: Ready-to-use tools for automating tasks, solving problems, and streamlining workflows. Efficient software solutions for your business.",
59+
"founder": {"@type": "Person","name": "Santiago Rivera Marin"},"sameAs": ["https://www.tiktok.com/@dev2forge","https://www.youtube.com/@dev2forge","https://github.com/dev2forge"]}
60+
</script>
5061
</head>
5162
<body class="bg-white dark:bg-gray-900 dark:text-gray-100 text-gray-800 transition-colors duration-300 min-h-screen flex flex-col dark">
5263
<!-- Header -->
5364
<header class="w-full flex justify-between items-center p-6 flex-shrink-0">
5465
<div class="w-full text-center">
55-
<!-- <h1 class="text-3xl font-bold inline"><a href="https://github.com/dev2forge" target="_blank" class="no-decoration underline" id="title-page"></a></h1> -->
56-
<a href="https://github.com/dev2forge" target="_blank" class="flex justify-center"><img id="thumbnail-dev2forge" class="thumbnail-dev2forge img-fluid" /></a>
66+
<h1 class="text-3xl font-bold inline">
67+
<a href="https://github.com/dev2forge" target="_blank" class="flex justify-center">
68+
<img id="thumbnail-dev2forge" class="thumbnail-dev2forge img-fluid" alt="Dev2Forge Thumbnail, logo thumbnail."/>
69+
</a>
70+
</h1>
5771
</div>
5872
<!-- Feature: Add "Toggle Theme" -->
5973
</header>

robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
User-agent: *
2+
Allow: /
3+
Sitemap: https://www.dev2forge.software/sitemap.xml

src/assets/js/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ function __formatHTML(container) {
105105
* @param {HTMLElement} container Container element where tables are located.
106106
*/
107107
function __setScrollableTables(container) {
108-
console.log(container);
109108
container.querySelectorAll('table').forEach((table) => {
110109
table.classList.add('markdown-table');
111110
const wrapper = document.createElement('div');

src/assets/json/configs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"ignoreRepos": ["discussions-about", "dev2forge.github.io", ".github", "docs"],
3-
"thumbnail1": "https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/thumbanil-dev2forge.png"
4-
}
3+
"thumbnail1": "https://cdn.jsdelivr.net/gh/tutosrive/images-projects-srm-trg@main/dev2forge/thumbanil-dev2forge1.webp"
4+
}

src/utils/showdown/showdown.min.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/tailwind/tailwind-3.4.16

Lines changed: 83 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)