Skip to content

Commit 9b30e2c

Browse files
committed
fix: Update Open Graph and Twitter meta tags for correct URLs and improve community links
1 parent 8027b1e commit 9b30e2c

2 files changed

Lines changed: 13 additions & 16 deletions

File tree

site/index.html

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121

2222
<!-- Open Graph / Facebook -->
2323
<meta property="og:type" content="website">
24-
<meta property="og:url" content="https://struct.httpdss.com">
24+
<meta property="og:url" content="https://httpdss.github.io/struct">
2525
<meta property="og:title" content="STRUCT - Automated Project Structure Generator">
2626
<meta property="og:description" content="Powerful, flexible tool for automating project structure creation through YAML configurations.">
27-
<meta property="og:image" content="https://struct.httpdss.com/images/struct-banner.png">
27+
<meta property="og:image" content="https://httpdss.github.io/struct/images/struct-banner.png">
2828

2929
<!-- Twitter -->
3030
<meta property="twitter:card" content="summary_large_image">
31-
<meta property="twitter:url" content="https://struct.httpdss.com">
31+
<meta property="twitter:url" content="https://httpdss.github.io/struct">
3232
<meta property="twitter:title" content="STRUCT - Automated Project Structure Generator">
3333
<meta property="twitter:description" content="Powerful, flexible tool for automating project structure creation through YAML configurations.">
34-
<meta property="twitter:image" content="https://struct.httpdss.com/images/struct-banner.png">
34+
<meta property="twitter:image" content="https://httpdss.github.io/struct/images/struct-banner.png">
3535

3636
<!-- Favicon -->
3737
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg">
@@ -102,10 +102,6 @@
102102
]
103103
}
104104
</script>
105-
<!-- }
106-
107-
.container {
108-
max-width: 800px; -->
109105
</head>
110106

111107
<body>
@@ -581,7 +577,6 @@ <h3>Support</h3>
581577
<li><a href="https://patreon.com/structproject" target="_blank">Patreon</a></li>
582578
<li><a href="https://www.paypal.me/httpdss" target="_blank">PayPal</a></li>
583579
<li><a href="https://github.com/httpdss/struct/blob/main/docs/funding.md" target="_blank">Funding</a></li>
584-
<li><a href="mailto:contact@httpdss.com">Contact</a></li>
585580
</ul>
586581
</div>
587582
</div>

site/js/phase3.js

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -658,31 +658,33 @@ variables:
658658
{
659659
icon: 'fab fa-github',
660660
title: 'GitHub Repository',
661-
description: 'Contribute to STRUCT, report issues, and collaborate with the community',
661+
description:
662+
'Contribute to STRUCT, report issues, and collaborate with the community',
662663
action: 'View on GitHub',
663-
link: 'https://github.com/httpdss/struct'
664+
link: 'https://github.com/httpdss/struct',
664665
},
665666
{
666667
icon: 'fas fa-comments',
667668
title: 'Discussions',
668-
description: 'Ask questions, share ideas, and get help from other STRUCT users',
669+
description:
670+
'Ask questions, share ideas, and get help from other STRUCT users',
669671
action: 'Join Discussion',
670-
link: 'https://github.com/httpdss/struct/discussions'
672+
link: 'https://github.com/httpdss/struct/discussions',
671673
},
672674
{
673675
icon: 'fas fa-book',
674676
title: 'Documentation',
675677
description: 'Comprehensive guides, tutorials, and API documentation',
676678
action: 'Read Docs',
677-
link: '/docs'
679+
link: 'https://github.com/httpdss/struct/blob/main/docs/index.md',
678680
},
679681
{
680682
icon: 'fas fa-heart',
681683
title: 'Support Project',
682684
description: 'Help keep STRUCT development active and growing',
683685
action: 'Support Us',
684-
link: 'https://patreon.com/structproject'
685-
}
686+
link: 'https://patreon.com/structproject',
687+
},
686688
];
687689

688690
const communityGrid = document.querySelector('#community .community-grid');

0 commit comments

Comments
 (0)