eny.space Landingpage

Compare changes

Choose any two refs to compare.

Changed files
+7 -3
app
+5 -1
README.md
··· 112 112 ```bash 113 113 all git@tangled.sh:samsour.de/eny-space (fetch) 114 114 all git@github.com:Krekeny/eny-space.git (push) 115 + all git@tangled.sh:samsour.de/eny-space (push) 115 116 origin git@tangled.sh:samsour.de/eny-space (fetch) 116 117 origin git@tangled.sh:samsour.de/eny-space (push) 117 118 ``` 118 119 120 + Note: I previously had `all` with `git@tangled.sh:samsour.de/eny-space` as **fetch only**, so pushes were only going to GitHub and the tangled.sh repo wasn’t in sync. The config above fixes that by adding tangled.sh as a push URL on `all`. 121 + 119 122 ### Setup (New Clones) 120 123 121 124 ```bash 122 125 # Clone primary 123 126 git clone git@tangled.sh:samsour.de/eny-space 124 127 125 - # Add GitHub mirror push 128 + # Add GitHub mirror + tangled push 126 129 cd eny-space 127 130 git remote rename origin tangled 128 131 git remote add all git@tangled.sh:samsour.de/eny-space 129 132 git remote set-url --add --push all git@github.com:Krekeny/eny-space.git 133 + git remote set-url --add --push all git@tangled.sh:samsour.de/eny-space 130 134 131 135 # Push everything 132 136 git push all --all
+2 -2
app/page.tsx
··· 49 49 > 50 50 Request early access 51 51 </Link> 52 - {/* <Link 52 + <Link 53 53 href="/checkout" 54 54 style={{ 55 55 display: "inline-block", ··· 63 63 }} 64 64 > 65 65 Get yours 66 - </Link> */} 66 + </Link> 67 67 </div> 68 68 </main> 69 69 );