We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aba538b commit e737220Copy full SHA for e737220
.github/workflows/build-site.yml
@@ -20,10 +20,12 @@ jobs:
20
run: git clone https://github.com/chowdhary-org/website.git site
21
- name: Move project
22
run: mv site/* .
23
+ - name: Create homepage directory
24
+ run: mkdir "src/app/(homepage)"
25
- name: Move entry point
- run: mv src/app/foundation/page.tsx src/app/page.tsx
- - name: Remove holdings project
26
- run: rm -rf src/app/holdings
+ run: mv src/app/foundation/page.tsx "src/app/(homepage)/page.tsx"
27
+ - name: Move layout
28
+ run: mv src/app/foundation/layout.tsx "src/app/(homepage)/layout.tsx"
29
- name: Replace brand colors
30
run: sed -i -e "s/sky/teal/g" ./tailwind.config.ts
31
- name: Detect package manager
0 commit comments