Skip to content

Commit

Permalink
fix: update import paths for paraglide messages
Browse files Browse the repository at this point in the history
Co-Authored-By: Martin DONADIEU <[email protected]>
  • Loading branch information
devin-ai-integration[bot] and riderx committed Feb 12, 2025
1 parent 118f473 commit e727942
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/pages/appflow-transfer/index.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
import Layout from '@/layouts/Layout.astro'
import VueAppflowTransfer from '@/vue-pages/appflow-transfer.vue'
import * as m from "../../paraglide/messages.js"
const title = [Astro.locals.runtimeConfig.public.brand, m.migrate_from_appflow()].join(' | ')
const description = m.appflow_transfer_description()
const content = { title, description }
---

<Layout content={content}><VueAppflowTransfer locale={Astro.locals.locale} client:load /></Layout>
11 changes: 11 additions & 0 deletions src/pages/premium-support/index.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
import Layout from '@/layouts/Layout.astro'
import VuePremiumSupport from '@/vue-pages/premium-support.vue'
import * as m from "../../paraglide/messages.js"
const title = [Astro.locals.runtimeConfig.public.brand, m.premium_support()].join(' | ')
const description = m.premium_support_description()
const content = { title, description }
---

<Layout content={content}><VuePremiumSupport locale={Astro.locals.locale} client:load /></Layout>
12 changes: 12 additions & 0 deletions src/pages/services/index.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
---
import Layout from '@/layouts/Layout.astro'
import VueServices from '@/vue-pages/services.vue'
import * as m from "../../paraglide/messages.js"

const title = [Astro.locals.runtimeConfig.public.brand, m.services()].join(' | ')
const description = m.services_description()
const content = { title, description }
---

<Layout content={content}><VueServices locale={Astro.locals.locale} client:load /></Layout>

0 comments on commit e727942

Please sign in to comment.