Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuamotoaki committed Oct 9, 2024
1 parent 69ba778 commit 859c0b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ If you're interested in building a Tiger App or joining the TigerApps team, chec

If you've never worked with Astro before, it's essentially like HTML with a bit of JSX sprinkled in. Compared to pure HTML, it makes it easy to have modularity, accessibility, and SEO.

When updating data (apps, members, companies, etc.), be sure to decouple the data from the HTML/Astro markup. For example, MEMBERS (in [index.astro](./src/pages/index.astro)) holds the data for current members that will be rendered by the Astro markup. Global CSS styles should be used sparingly; TailwindCSS is preferred. However, you can place global CSS in [Layout.astro](./src/layouts/Layout.astro).
When updating data (apps, members, companies, etc.), be sure to decouple the data from the HTML/Astro markup. For example, the currentMembers variable (in [Members.astro](./src/components/landing/Members.astro)) holds the data for current members that will be rendered by the Astro markup. Global CSS styles should be used when preserving style across multiple elements, but Tailwind is preferred. You can place global CSS in [Layout.astro](./src/layouts/Layout.astro).

Run `npm run format` to format code according to the [Prettier settings](./.prettierrc).
2 changes: 1 addition & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
integrations: [tailwind()],
site: "https://tigerapps.org",
site: "https://tigerapps.org"
});

0 comments on commit 859c0b1

Please sign in to comment.