Skip to content

Commit 9369722

Browse files
authored
Merge pull request #11 from Fabulously-Optimized/changes
Fixes and update
2 parents a440af8 + 2ca138b commit 9369722

File tree

4 files changed

+2732
-568
lines changed

4 files changed

+2732
-568
lines changed

lang/en.json

+3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@
99
"footer.legal_notice": "Fabulously Optimized is not affiliated with Mojang Studios or Microsoft.",
1010
"content.contributors.columned-hero.title": "These people are truly amazing...",
1111
"content.contributors.columned-hero.subtitle": "Fabulously Optimized is a community effort, and we couldn't have done it without these people.",
12+
"content.home.columned-hero.vanilla": "Manual download",
13+
"content.home.columned-hero.disclaimer": "By downloading Fabulously Optimized, you have acknowledged the disclaimers.",
1214
"content.contributors.org": "Organization Members",
1315
"content.contributors": "Contributors",
1416
"content.home.columned-hero.supercharge": "Supercharge",
1517
"content.home.columned-hero.title": "your Minecraft gameplay.",
1618
"content.home.columned-hero.subtitle": "A simple Minecraft modpack focusing on performance and graphics enhancements.",
1719
"content.home.graph.subtitle": "Fabulously Optimized is <span class=\"smaller__gradient\">4x Quicker</span> than OptiFine.<br />",
20+
"content.home.graph.vanilla": "Vanilla Minecraft",
1821
"content.home.download.subtitle": "We encourage using CurseForge App, Modrinth App, Prism Launcher, MultiMC, or official Minecraft Launcher.",
1922
"content.home.download.title": "Download Now",
2023
"content.home.features.title": "Why should you use Fabulously Optimized?",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@nuxt/image": "^1.0.0",
1515
"@nuxtjs/color-mode": "^3.3.0",
1616
"@nuxtjs/i18n": "8.0.0-rc.5",
17-
"nuxt": "^3.8.0",
17+
"nuxt": "^3.10.0",
1818
"vue": "^3.3.6",
1919
"vue-router": "^4.2.5"
2020
},

pages/index.vue

+15
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,12 @@ const features: any = ref([
111111
<Button color="green" @click="navigateTo(`/modrinth`, { external: true })">
112112
<DownloadIcon />Modrinth
113113
</Button>
114+
<Button color="gray" @click="navigateTo(`/vanilla`, { external: true })">
115+
<DownloadIcon />{{ $t("content.home.columned-hero.vanilla") }}
116+
</Button>
117+
</div>
118+
<div>
119+
<p id="disclaimer-text" @click="navigateTo(`/terms`, { external: true })">{{ $t("content.home.columned-hero.disclaimer") }}</p>
114120
</div>
115121
</div>
116122
<div class="column graph__container">
@@ -192,6 +198,10 @@ const features: any = ref([
192198
<div class="buttons">
193199
<Button :large="true" color="orange" @click="navigateTo(`/curseforge`, { external: true })">CurseForge</Button>
194200
<Button :large="true" color="green" @click="navigateTo(`/modrinth`, { external: true })">Modrinth</Button>
201+
<Button :large="true" color="gray" @click="navigateTo(`/vanilla`, { external: true })">{{ $t("content.home.columned-hero.vanilla") }}</Button>
202+
</div>
203+
<div style="margin: -1em">
204+
<p id="disclaimer-text" @click="navigateTo(`/terms`, { external: true })">{{ $t("content.home.columned-hero.disclaimer") }}</p>
195205
</div>
196206
<!-- <DownloadSection class="download-card-fix" /> -->
197207
</div>
@@ -309,4 +319,9 @@ h3 {
309319
flex-direction: row;
310320
gap: var(--gap-md);
311321
}
322+
323+
#disclaimer-text{
324+
color: gray;
325+
cursor: pointer;
326+
}
312327
</style>

0 commit comments

Comments
 (0)