Skip to content

Commit

Permalink
content: rename 'product' to 'pattern'
Browse files Browse the repository at this point in the history
  • Loading branch information
shah authored Sep 23, 2024
1 parent 5066314 commit 7f7f4c4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ src/
│ ├── sections/ # Components for various sections of the website
│ ├── ThemeIcon.astro # Component for toggling light/dark themes
│ └── ui/ # UI components categorized by functionality
├── content/ # Markdown files for blog posts, insights, products, and site configuration
├── content/ # Markdown files for blog posts, insights, patterns, and site configuration
│ ├── blog/
│ ├── docs/
│ ├── insights/
│ ├── products/
│ ├── insights/
│ ├── patterns/
│ └── config.ts # Contains site-wide configuration options
├── data_files/ # Strings stored as JSON files
├── images/ # Static image assets for use across the website
Expand All @@ -73,8 +73,8 @@ src/
│ ├── fr/ # Localized content
│ ├── contact.astro
│ ├── index.astro # The landing/home page
│ ├── insights/
│ ├── products/
│ ├── insights/ # TODO: need to make this singular
│ ├── pattern/
│ ├── robots.txt.ts # Dynamically generates robots.txt
│ └── services.astro
└── utils/ # Shared utility functions and helpers
Expand Down Expand Up @@ -258,7 +258,7 @@ Please note that smooth scrolling can affect accessibility and performance on so
### GSAP Integration

For individual pattern pages, [GSAP](https://gsap.com/) has been integrated to add engaging animations that execute as soon as the product page loads. You can find and modify the GSAP configuration in the script sections of the product page file located at `src/pages/products/[...slug].astro` and the insights page at `src/pages/insights/[...slug].astro`:
For individual pattern pages, [GSAP](https://gsap.com/) has been integrated to add engaging animations that execute as soon as the pattern page loads. You can find and modify the GSAP configuration in the script sections of the pattern page file located at `src/pages/pattern/[...slug].astro` and the insights page at `src/pages/insights/[...slug].astro`:

```astro
<script>
Expand All @@ -269,7 +269,7 @@ For individual pattern pages, [GSAP](https://gsap.com/) has been integrated to a

**Customizing Animations:**

Please tailor the GSAP animations within this script to fit our project's look and feel. The provided example is a starting point, representing how to leverage GSAP for immediate visual impact as a product page loads.
Please tailor the GSAP animations within this script to fit our project's look and feel. The provided example is a starting point, representing how to leverage GSAP for immediate visual impact as a pattern page loads.

**Modifying or Removing Animations:**

Expand Down

0 comments on commit 7f7f4c4

Please sign in to comment.