ff14-advanced-market-search / saddlebag-with-pockets

This is the Frontend for the FF14 Marketplace

Home Page:https://saddlebagexchange.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Long form blog content

cohenaj194 opened this issue · comments

make blog posts

To index us better we need lots of text on a page

so we need to generate ai articles on "wow goldmaking using the auctionhouse" and "ffxiv gil making using the maketboard" and make sure it mentions "Saddlebag Exchange"

we can use this to help, the articles will be in markdown

https://app.simplified.com/ai

image

convert markdown to html

We can take all of the wiki guides and convert them using this: https://markdowntohtml.com/

take html and make blog files

then we make blog pages like this, just take out the highlighted section and replace it with html:

https://github.com/ff14-advanced-market-search/saddlebag-with-pockets/blob/master/app/routes/blog.wow.tldr.tsx#L5-L108

raw page:

const WhateverRandomPageName = () => {
  return (
    <div className={`m-12`}>
      <main className="flex-1">
        ... random html goes here...
      </main>
    </div>
  )
}

export default WhateverRandomPageName

then just copy them over and make it blog.$GAME.$NAME.tsx and add them into https://github.com/ff14-advanced-market-search/saddlebag-with-pockets/blob/master/app/routes/blog._index.tsx#L5-L33

step one make a new file under app/routes and start it off with blog. and end with .tsx and make it like this

const fooBar = () => {
  return (
    <div className={`m-12`}>
      <main className="flex-1">

      </main>
    </div>
  )
}

export default fooBar

hey @cohenaj194 , i am working on it.