Compare commits
2 Commits
5439a445c6
...
b41a0c0ee2
| Author | SHA1 | Date | |
|---|---|---|---|
| b41a0c0ee2 | |||
| 0acbea84bf |
BIN
public/assets/images/blog/blog-cards/ai-card.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/assets/images/blog/blog-cards/improve-card.webp
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
public/assets/images/blog/blog-cards/mastering-card.webp
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
public/assets/images/blog/blog-cards/top-card.webp
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
public/assets/images/blog/blog-details/ai-big-img.webp
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
public/assets/images/blog/blog-details/improve-big-img.webp
Normal file
|
After Width: | Height: | Size: 39 KiB |
BIN
public/assets/images/blog/blog-details/mastering-big-img.webp
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
public/assets/images/blog/blog-details/top-big-img.webp
Normal file
|
After Width: | Height: | Size: 31 KiB |
@ -77,6 +77,11 @@ const blogPosts = [
|
||||
{ slug: 'how-to-overcome-the-biggest-challenges-in-cold-emailing-b2b-success' },
|
||||
{ slug: '9-powerful-free-google-tools-to-grow-your-business' },
|
||||
{ slug: '5-digital-marketing-mistakes-every-small-business-must-avoid' },
|
||||
{ slug: 'how-digital-solutions-drove-success-for-a-local-business' },
|
||||
{ slug: 'ai-driven-seo-how-to-future-proof-your-search-strategy' },
|
||||
{ slug: 'mastering-omnichannel-marketing-strategies-for-2026' },
|
||||
{ slug: 'how-metatroncube-solutions-improve-local-seo-waterloo' },
|
||||
{ slug: 'why-metatroncube-solutions-top-choice-social-media-marketing-waterloo' },
|
||||
|
||||
];
|
||||
|
||||
@ -95,7 +100,7 @@ const allLinks = [...staticLinks, ...blogLinks].map(link => ({
|
||||
async function generateSitemap() {
|
||||
try {
|
||||
const sitemap = new SitemapStream({ hostname: hostname });
|
||||
const writeStream = fs.createWriteStream(path.resolve(__dirname, '../out/sitemap.xml'));
|
||||
const writeStream = fs.createWriteStream(path.resolve(__dirname, '../public/sitemap.xml'));
|
||||
|
||||
sitemap.pipe(writeStream);
|
||||
|
||||
|
||||