# Hack Club Theme Starter A sample [Next.js] project for getting started with [MDX], [Theme UI], & [Hack Club Theme]. [next.js]: https://nextjs.org [mdx]: https://mdxjs.com [theme ui]: https://theme-ui.com [hack club theme]: https://github.com/hackclub/theme ## Usage 1. Import this repo to your coding environment of choice. Download it, `git clone`, or use the GitHub import on Glitch/Repl.it. 2. `yarn` to install dependencies. 3. `yarn dev` to start your server. 4. Start adding your own pages & components in their respective directories. ## Configuration ### Theme switcher We’ve included an example theme switcher component at `components/color-switcher.js`, which is included on every page through its inclusion in `pages/_app.js`. Feel free to change it. ### Hack Club fonts If you’re making a Hack Club HQ project, you’re allowed to use Hack Club’s font, [Phantom Sans](https://www.futurefonts.xyz/phantom-foundry/phantom-sans). To load it, simply uncomment the `import '@hackclub/theme/fonts/reg-bold.css'` line in `_app.js`. ### Custom theme By default, the raw [Hack Club Theme](https://theme.hackclub.com) will be used. If you’d like to edit the theme, we recommend making a theme file (perhaps at `lib/theme.js`) along these lines: ```js import base from '@hackclub/theme' const theme = base // theme.fontSizes = […] // theme.fonts.heading = '' export default theme ``` ### Running at another port Super easy: `yarn dev -p 5000` ### Adding meta tags These template includes [@hackclub/meta](https://github.com/hackclub/theme/tree/master/packages/meta) for adding meta tags to Hack Club HQ sites. To set default meta tags across all pages, add the following to `pages/_app.js`: ```js // import Head from 'next/head'
``` If you’re not making a site for HQ, don’t use `@hackclub/meta`, since it adds Hack Club’s favicons & info. Instead, we recommend making your own component, perhaps at `components/meta.js`.