Skip to content

Commit

Permalink
Initial astro blog code
Browse files Browse the repository at this point in the history
  • Loading branch information
knpwrs committed Jul 7, 2023
1 parent 4712d8b commit b764595
Show file tree
Hide file tree
Showing 30 changed files with 9,300 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist/
.astro/
node_modules/
*.log
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.astro
dist
4 changes: 4 additions & 0 deletions .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
trailingComma: all
tabWidth: 2
semi: true
singleQuote: true
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Let's Church Blog and Newsletter

A minimal static blog and newsletter system built on Astro and MJML.
12 changes: 12 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import sitemap from '@astrojs/sitemap';
import react from '@astrojs/react';

import tailwind from '@astrojs/tailwind';

// https://astro.build/config
export default defineConfig({
site: 'https://blog.lets.church',
integrations: [mdx(), sitemap(), react(), tailwind()],
});
Loading

0 comments on commit b764595

Please sign in to comment.