├── .docker ├── Dockerfile ├── README.md └── compose │ ├── .env │ ├── docker-compose.yml │ ├── services.yml │ └── update_and_restart.sh ├── .env ├── .eslintrc.json ├── .github └── workflows │ ├── deploy-to-pages.yml │ └── deploy-to-preview.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscode ├── extensions.json └── settings.json ├── .yarnrc.yml ├── CHANGELOG.md ├── MIT-LICENSE ├── README.md ├── bin ├── docker.sh ├── generateComponentsMarkdownData.ts └── transforms.ts ├── components.json ├── env.d.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public ├── ads.txt ├── content │ └── components │ │ ├── empty │ │ ├── de_DE.md │ │ ├── en.md │ │ ├── es.md │ │ ├── fr.md │ │ ├── it.md │ │ ├── ja.md │ │ ├── ko.md │ │ ├── nl.md │ │ ├── pl.md │ │ ├── pt.md │ │ ├── ru.md │ │ ├── sv.md │ │ ├── tr.md │ │ └── zh.md │ │ ├── home │ │ ├── block1 │ │ │ ├── de_DE.md │ │ │ ├── en.md │ │ │ ├── es.md │ │ │ ├── fr.md │ │ │ ├── it.md │ │ │ ├── ja.md │ │ │ ├── ko.md │ │ │ ├── nl.md │ │ │ ├── pl.md │ │ │ ├── pt.md │ │ │ ├── ru.md │ │ │ ├── sv.md │ │ │ ├── tr.md │ │ │ └── zh.md │ │ └── block2 │ │ │ └── en.md │ │ ├── style │ │ ├── alternating │ │ │ └── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ ├── bold-italic │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── bold-text │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── bubble-text │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── cool │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── cursive-font │ │ │ └── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ ├── fancy │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── italic │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── sans-serif │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── serif │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── small-text │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ ├── square-text │ │ │ ├── block1 │ │ │ │ ├── de_DE.md │ │ │ │ ├── en.md │ │ │ │ ├── es.md │ │ │ │ ├── fr.md │ │ │ │ ├── it.md │ │ │ │ ├── ja.md │ │ │ │ ├── ko.md │ │ │ │ ├── nl.md │ │ │ │ ├── pl.md │ │ │ │ ├── pt.md │ │ │ │ ├── ru.md │ │ │ │ ├── sv.md │ │ │ │ ├── tr.md │ │ │ │ └── zh.md │ │ │ └── block2 │ │ │ │ └── en.md │ │ └── underline │ │ │ ├── block1 │ │ │ ├── de_DE.md │ │ │ ├── en.md │ │ │ ├── es.md │ │ │ ├── fr.md │ │ │ ├── it.md │ │ │ ├── ja.md │ │ │ ├── ko.md │ │ │ ├── nl.md │ │ │ ├── pl.md │ │ │ ├── pt.md │ │ │ ├── ru.md │ │ │ ├── sv.md │ │ │ ├── tr.md │ │ │ └── zh.md │ │ │ └── block2 │ │ │ └── en.md │ │ └── topic │ │ ├── block1 │ │ ├── de_DE.md │ │ ├── en.md │ │ ├── es.md │ │ ├── fr.md │ │ ├── it.md │ │ ├── ja.md │ │ ├── ko.md │ │ ├── nl.md │ │ ├── pl.md │ │ ├── pt.md │ │ ├── ru.md │ │ ├── sv.md │ │ ├── tr.md │ │ └── zh.md │ │ ├── facebook │ │ └── block1 │ │ │ ├── de_DE.md │ │ │ ├── en.md │ │ │ ├── es.md │ │ │ ├── fr.md │ │ │ ├── it.md │ │ │ ├── ja.md │ │ │ ├── ko.md │ │ │ ├── nl.md │ │ │ ├── pl.md │ │ │ ├── pt.md │ │ │ ├── ru.md │ │ │ ├── sv.md │ │ │ ├── tr.md │ │ │ └── zh.md │ │ └── handwriting │ │ └── block1 │ │ ├── de_DE.md │ │ ├── en.md │ │ ├── es.md │ │ ├── fr.md │ │ ├── it.md │ │ ├── ja.md │ │ ├── ko.md │ │ ├── nl.md │ │ ├── pl.md │ │ ├── pt.md │ │ ├── ru.md │ │ ├── sv.md │ │ ├── tr.md │ │ └── zh.md ├── data │ └── generated │ │ └── components-markdown.json ├── i18n │ ├── de_DE.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── nl.json │ ├── pl.json │ ├── pt.json │ ├── ru.json │ ├── sv.json │ ├── tr.json │ └── zh.json ├── logo.png ├── next.svg └── vercel.svg ├── src ├── app │ ├── [locale] │ │ ├── (frontend) │ │ │ ├── (home) │ │ │ │ └── page.tsx │ │ │ ├── [...rest] │ │ │ │ └── page.tsx │ │ │ ├── [style] │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── topic │ │ │ │ ├── [topic] │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── not-found.tsx │ ├── api │ │ ├── ipinfo │ │ │ └── route.ts │ │ └── redirectcheck │ │ │ └── route.ts │ ├── favicon.ico │ └── robots.ts ├── components │ ├── frontend │ │ ├── page │ │ │ ├── style │ │ │ │ ├── fonts.tsx │ │ │ │ ├── main.tsx │ │ │ │ └── sidebar.tsx │ │ │ └── topic │ │ │ │ ├── fonts.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── main.tsx │ │ └── shared │ │ │ ├── crumb.tsx │ │ │ ├── faqs.tsx │ │ │ ├── footer.tsx │ │ │ ├── header.tsx │ │ │ ├── nav-bar.tsx │ │ │ ├── not-found.tsx │ │ │ └── top.tsx │ ├── shared │ │ ├── GoogleAdSense.tsx │ │ ├── copy.tsx │ │ ├── locale-switch.tsx │ │ ├── markdown.tsx │ │ └── mode-toggle.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── select.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── switch.tsx │ │ ├── textarea.tsx │ │ └── typography.tsx ├── config.ts ├── fonts.ts ├── i18n.ts ├── lib │ ├── api.ts │ ├── i18n.ts │ └── utils.ts ├── metadata.ts ├── middleware.ts ├── slugs.ts ├── transforms.ts └── types.ts ├── tailwind.config.ts ├── test.js ├── tsconfig.json └── wrangler.toml /.docker/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:20-alpine AS base 2 | 3 | # Install dependencies only when needed 4 | FROM base AS deps 5 | # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. 6 | RUN apk add --no-cache libc6-compat 7 | WORKDIR /app 8 | 9 | RUN node -v 10 | 11 | # Install dependencies based on the preferred package manager 12 | COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./ 13 | RUN ls -la 14 | RUN \ 15 | if [ -f yarn.lock ]; then yarn --frozen-lockfile; \ 16 | elif [ -f package-lock.json ]; then npm ci; \ 17 | elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \ 18 | else echo "Lockfile not found." && exit 1; \ 19 | fi 20 | 21 | 22 | # Rebuild the source code only when needed 23 | FROM base AS builder 24 | WORKDIR /app 25 | COPY --from=deps /app/node_modules ./node_modules 26 | COPY . . 27 | 28 | RUN yarn build 29 | 30 | RUN ls -la /app/.next/standalone 31 | 32 | # Production image, copy all the files and run next 33 | FROM base AS runner 34 | WORKDIR /app 35 | 36 | ENV NODE_ENV=production 37 | 38 | RUN addgroup --system --gid 1001 nodejs 39 | RUN adduser --system --uid 1001 nextjs 40 | 41 | COPY --from=builder /app/public ./public 42 | 43 | # Set the correct permission for prerender cache 44 | RUN mkdir .next 45 | RUN chown nextjs:nodejs .next 46 | 47 | # Automatically leverage output traces to reduce image size 48 | # https://nextjs.org/docs/advanced-features/output-file-tracing 49 | COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ 50 | COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static 51 | 52 | RUN ls -la /app 53 | 54 | USER nextjs 55 | 56 | EXPOSE 3000 57 | 58 | ENV PORT=3000 59 | # set hostname to localhost 60 | ENV HOSTNAME="0.0.0.0" 61 | 62 | # server.js is created by next build from the standalone output 63 | # https://nextjs.org/docs/pages/api-reference/next-config-js/output 64 | CMD ["node", "server.js"] -------------------------------------------------------------------------------- /.docker/README.md: -------------------------------------------------------------------------------- 1 | 2 | ## Docker Build For Local 3 | 4 | ```sh 5 | sh ./bin/docker.sh 6 | 7 | # Start 8 | docker run -p 3000:3000 font-generator:latest 9 | ``` 10 | 11 | ## Start with online image 12 | 13 | ```sh 14 | 15 | docker pull seadfeng/font-generator 16 | docker run -p 3000:3000 seadfeng/font-generator 17 | 18 | # or 19 | 20 | cd .docker/compose && docker compose up -d 21 | ``` 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /.docker/compose/.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_GA_ID= -------------------------------------------------------------------------------- /.docker/compose/docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | app: 3 | extends: 4 | file: services.yml 5 | service: app 6 | ports: 7 | - 127.0.0.1:3000:3000 -------------------------------------------------------------------------------- /.docker/compose/services.yml: -------------------------------------------------------------------------------- 1 | services: 2 | app: 3 | image: seadfeng/font-generator:latest 4 | env_file: .env -------------------------------------------------------------------------------- /.docker/compose/update_and_restart.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Rebuild and start the app 4 | docker compose up -d --no-deps --build app 5 | 6 | # Clean up unused Docker resources 7 | docker system prune -f -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | NODE_ENV=development -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "next/core-web-vitals", 4 | "eslint:recommended", 5 | "plugin:@typescript-eslint/recommended", 6 | "plugin:prettier/recommended", 7 | "plugin:react/recommended" 8 | ], 9 | "plugins": [ 10 | "react", 11 | "@typescript-eslint", 12 | "react-hooks", 13 | "prettier" 14 | ], 15 | "rules": { 16 | "react/react-in-jsx-scope": "off" 17 | } 18 | } -------------------------------------------------------------------------------- /.github/workflows/deploy-to-pages.yml: -------------------------------------------------------------------------------- 1 | name: Deploy Production 2 | on: 3 | release: 4 | types: 5 | - published 6 | jobs: 7 | build: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Checkout Repository 11 | uses: actions/checkout@v3 12 | 13 | - name: Set up QEMU 14 | uses: docker/setup-qemu-action@v3 15 | 16 | - name: Setup Docker Buildx 17 | id: docker_buildx 18 | uses: docker/setup-buildx-action@v3 19 | 20 | - name: Docker Build 21 | run: | 22 | echo ${{ secrets.DOCKER_LOGIN }} | docker login -u ${{ github.actor }} --password-stdin 23 | docker buildx create --use 24 | docker buildx inspect --bootstrap 25 | VERSION=$(node -p "require('./package.json').version") 26 | APP=$(node -p "require('./package.json').name") 27 | 28 | echo "Build: ${APP}.${VERSION}" 29 | 30 | docker buildx build \ 31 | --push \ 32 | --platform linux/amd64,linux/arm64/v8 \ 33 | --build-arg VERSION=$VERSION \ 34 | -t ${{ github.actor }}/${APP}:$VERSION \ 35 | -t ${{ github.actor }}/${APP}:latest \ 36 | -f .docker/Dockerfile \ 37 | . 38 | 39 | echo "${{ github.actor }}/${APP}:${VERSION}" 40 | echo "${{ github.actor }}/${APP}:latest" 41 | deploy: 42 | runs-on: ubuntu-latest 43 | needs: build 44 | permissions: 45 | contents: read 46 | deployments: write 47 | name: Publish to Cloudflare Pages 48 | timeout-minutes: 10 49 | environment: 50 | name: production 51 | url: ${{ steps.deploy.outputs.deployment-url }} 52 | steps: 53 | - uses: actions/checkout@v4 54 | - name: Install dependencies 55 | run: npm install 56 | - name: Build 57 | run: | 58 | response=$(curl -s -o /dev/null -w "%{http_code}" -X GET "https://api.cloudflare.com/client/v4/accounts/${{ secrets.CLOUDFLARE_ACCOUNT_ID }}/pages/projects/font-generator" \ 59 | -H "Authorization: Bearer ${{ secrets.CLOUDFLARE_API_TOKEN }}") 60 | if [ $response -eq 404 ]; then 61 | echo "Project does not exist, creating..." 62 | npx wrangler pages project create font-generator --production-branch main 63 | else 64 | echo "Project exists, skipping creation." 65 | fi 66 | npm run pages:build 67 | env: 68 | CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} 69 | CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} 70 | 71 | - name: Deploy to Cloudflare Pages 72 | id: deploy 73 | uses: cloudflare/wrangler-action@v3 74 | with: 75 | apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} 76 | accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} 77 | command: pages deploy --branch main -------------------------------------------------------------------------------- /.github/workflows/deploy-to-preview.yml: -------------------------------------------------------------------------------- 1 | name: Deploy Preview 2 | on: 3 | push: 4 | branches: 5 | - main 6 | paths-ignore: 7 | - README.md 8 | - CHANGELOG.md 9 | - MIT-LICENSE 10 | - .env 11 | - doc/** 12 | - bin/** 13 | - .vscode/** 14 | - .docker/** 15 | - .gitignore 16 | jobs: 17 | deploy: 18 | runs-on: ubuntu-latest 19 | permissions: 20 | contents: read 21 | deployments: write 22 | name: Publish to Cloudflare Pages 23 | timeout-minutes: 10 24 | environment: 25 | name: preview 26 | url: ${{ steps.deploy.outputs.deployment-url }} 27 | steps: 28 | - uses: actions/checkout@v4 29 | - name: Install dependencies 30 | run: npm install 31 | - name: Build 32 | run: | 33 | response=$(curl -s -o /dev/null -w "%{http_code}" -X GET "https://api.cloudflare.com/client/v4/accounts/${{ secrets.CLOUDFLARE_ACCOUNT_ID }}/pages/projects/font-generator-preview" \ 34 | -H "Authorization: Bearer ${{ secrets.CLOUDFLARE_API_TOKEN }}") 35 | if [ $response -eq 404 ]; then 36 | echo "Project does not exist, creating..." 37 | npx wrangler pages project create font-generator-preview --production-branch main 38 | else 39 | echo "Project exists, skipping creation." 40 | fi 41 | sed -i 's/font-generator/font-generator-preview/' wrangler.toml 42 | npm run pages:build 43 | env: 44 | CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} 45 | CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} 46 | 47 | - name: Deploy to Cloudflare Pages 48 | uses: cloudflare/wrangler-action@v3 49 | id: deploy 50 | with: 51 | apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} 52 | accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} 53 | command: pages deploy --branch main -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | 38 | # wrangler files 39 | .wrangler 40 | .dev.vars 41 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run generate-markdown-data && npm run add-data 5 | npm run generate-transforms && npm run add-transforms 6 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "esbenp.prettier-vscode", 4 | "dbaeumer.vscode-eslint", 5 | "lokalise.i18n-ally", 6 | "bradlc.vscode-tailwindcss" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "editor.codeActionsOnSave": { 4 | "source.organizeImports": "explicit", 5 | "source.fixAll": "explicit" 6 | }, 7 | "tailwindCSS.experimental.classRegex": [ 8 | ["cn\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"] 9 | ], 10 | "typescript.preferences.importModuleSpecifier": "shortest", 11 | "typescript.tsdk": "node_modules/typescript/lib", 12 | "eslint.workingDirectories": [{ "mode": "auto" }], 13 | "eslint.debug": true, 14 | "i18n-ally.localesPaths": [ 15 | "public/i18n" 16 | ], 17 | "i18n-ally.keystyle": "nested", 18 | "i18n-ally.enabledFrameworks": ["next-intl"] 19 | } 20 | -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | supportedArchitectures: 2 | linux: arm64 3 | darwin: arm64 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | ### [0.3.6](https://github.com/seadfeng/font-generator/compare/v0.3.5...v0.3.6) (2024-11-24) 6 | 7 | ### [0.3.5](https://github.com/seadfeng/font-generator/compare/v0.3.4...v0.3.5) (2024-11-24) 8 | 9 | ### 0.3.4 (2024-11-24) 10 | 11 | ## 0.3.0.rc 12 | 13 | Fix `#` issue 14 | 15 | ## 0.2.9.rc 16 | 17 | Add `äÄ` to transforms 18 | -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2024 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Font Generator 2 | 3 | 4 | ## Installation 5 | 6 | To set up the Font Generator project locally, follow these steps: 7 | 8 | 1. Clone the repository: 9 | 10 | ```sh 11 | git clone https://github.com/seadfeng/font-generator.git 12 | cd font-generator 13 | ``` 14 | 15 | 2. Install dependencies: 16 | 17 | ```sh 18 | npm install 19 | # or 20 | yarn install 21 | # or 22 | pnpm install 23 | ``` 24 | 25 | ## Usage Guide 26 | 27 | ### Running the Development Server 28 | 29 | To start the development server, run one of the following commands: 30 | 31 | ```sh 32 | npm run dev 33 | # or 34 | # yarn dev 35 | or 36 | # pnpm dev 37 | # or 38 | bun dev 39 | ``` 40 | 41 | Open [http://localhost:3000](http://localhost:3000) in your browser to see the result. 42 | 43 | ## Deploy to Cloudflare Pages 44 | 45 | ### Local Deploy 46 | 47 | Simple Deployment 48 | 49 | ```sh 50 | # install wrangler 51 | npm install -g wrangler 52 | 53 | # Cloudflare Login 54 | wrangler login 55 | 56 | # Deploy to Cloudflare Pages 57 | npm run deploy 58 | ``` 59 | 60 | 61 | ## Docker Image 62 | 63 | ```sh 64 | docker pull seadfeng/font-generator 65 | docker run -p 3000:3000 seadfeng/font-generator 66 | ``` 67 | 68 | ## Resource 69 | 70 | `src/fonts.ts` Source of Unicode font: 71 | 72 | - [unicode-formatter](https://github.com/DenverCoder1/unicode-formatter) 73 | - [yaytext.com](https://yaytext.com/) 74 | 75 | ## Contributing 76 | 77 | We welcome contributions to the Font Generator project. Please feel free to submit issues, feature requests, or pull requests. 78 | 79 | ## License 80 | 81 | [MIT License](MIT-LICENSE) -------------------------------------------------------------------------------- /bin/docker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | VERSION=$(node -p "require('./package.json').version") 4 | APP=$(node -p "require('./package.json').name") 5 | 6 | echo "Build: ${APP}.${VERSION}" 7 | 8 | docker buildx build \ 9 | --no-cache \ 10 | --build-arg VERSION=$VERSION \ 11 | -t ${APP}:$VERSION \ 12 | -f .docker/Dockerfile \ 13 | . 14 | 15 | docker tag ${APP}:$VERSION ${APP}:latest 16 | 17 | 18 | echo "${APP}:${VERSION}" 19 | echo "${APP}:latest" -------------------------------------------------------------------------------- /bin/generateComponentsMarkdownData.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env tsx 2 | 3 | import { appConfig, type LocaleType } from '@/config'; 4 | import { componentsMarkdownFile as binComponentsMarkdownFile, contentComponentsMarkdownDir } from '@/i18n'; 5 | import fs from 'fs'; 6 | import path from 'path'; 7 | 8 | const { i18n: { locales } } = appConfig; 9 | 10 | const componentsMarkdownFile = `public/${binComponentsMarkdownFile}`; 11 | 12 | const contentDir = path.join(process.cwd(), 'public', contentComponentsMarkdownDir); 13 | 14 | function generateComponentMarkdownData(dir: string, jsonData: Record = {}): Record { 15 | const entries = fs.readdirSync(dir, { withFileTypes: true }); 16 | 17 | entries.forEach(entry => { 18 | const fullPath = path.join(dir, entry.name); 19 | if (entry.isDirectory()) { 20 | generateComponentMarkdownData(fullPath, jsonData); 21 | } else if (entry.isFile() && entry.name.endsWith('.md')) { 22 | const relativePath = path.relative(contentDir, path.dirname(fullPath)).replace(/\\/g, '/'); 23 | const locale = path.basename(entry.name, '.md') as LocaleType; 24 | 25 | if (locales.includes(locale)) { 26 | if (!jsonData[relativePath]) { 27 | jsonData[relativePath] = { locales: [] }; 28 | } 29 | if (!jsonData[relativePath].locales.includes(locale)) { 30 | jsonData[relativePath].locales.push(locale); 31 | } 32 | } 33 | } 34 | }); 35 | 36 | return jsonData; 37 | } 38 | 39 | function writeComponentMarkdownData(): void { 40 | const jsonData = generateComponentMarkdownData(contentDir); 41 | const outputDir = path.dirname(componentsMarkdownFile); 42 | 43 | if (!fs.existsSync(outputDir)) { 44 | fs.mkdirSync(outputDir, { recursive: true }); 45 | } 46 | 47 | fs.writeFileSync( 48 | componentsMarkdownFile, 49 | JSON.stringify(jsonData, null, 2), 50 | 'utf8' 51 | ); 52 | 53 | console.log(`Generated components markdown data at ${componentsMarkdownFile}`); 54 | } 55 | 56 | writeComponentMarkdownData(); -------------------------------------------------------------------------------- /bin/transforms.ts: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import { alternatingFontKeys, alternatingFonts, fonts, RenameFonts, superFonts } from "../src/fonts"; 4 | import { FontKey } from "../src/transforms"; 5 | 6 | const outputFile = path.join(process.cwd(), 'src', 'transforms.ts'); 7 | 8 | type FontMap = { [key: string]: string }; 9 | type TransformMap = Partial>>; 10 | 11 | const transforms: TransformMap = {}; 12 | const normalChars = fonts.normal as string; 13 | 14 | Object.keys(fonts).forEach((fontKey) => { 15 | // if (fontKey !== 'normal') { 16 | transforms[fontKey] = {}; 17 | const currentChars = fonts[fontKey]; 18 | Array.from(normalChars).map((char, index) => { 19 | transforms[fontKey][char] = Array.from(currentChars)[index] 20 | }) 21 | if (fontKey in superFonts) { 22 | transforms[fontKey] = { 23 | ...transforms[fontKey], 24 | ...superFonts[fontKey] 25 | } 26 | } 27 | // } 28 | }); 29 | 30 | Object.keys(alternatingFonts).forEach((fontKey) => { 31 | transforms[fontKey] = {}; 32 | }); 33 | 34 | const fontKeys = Object.keys(fonts).filter(key => key); 35 | 36 | function toReadableFontName(key: string): string { 37 | if (key in RenameFonts) { 38 | return RenameFonts[key]; 39 | } else { 40 | return key 41 | .split(/(?=[A-Z])/) 42 | .map(word => word.charAt(0).toUpperCase() + word.slice(1)) 43 | .join(' ') 44 | } 45 | } 46 | 47 | const fontsObject: FontMap = Object.fromEntries( 48 | fontKeys.map(key => [key, toReadableFontName(key)]) 49 | ); 50 | 51 | const alternatingFontsObject: FontMap = Object.fromEntries( 52 | alternatingFontKeys.map(key => [key, toReadableFontName(key)]) 53 | ); 54 | 55 | const tsCode = ` 56 | // This file is auto-generated. Do not edit manually. 57 | import type { AlternatingFontKey } from "../src/fonts.ts" 58 | 59 | export const transforms = ${JSON.stringify(transforms, null, 2)} as const; 60 | 61 | export const fontKeys = ${JSON.stringify(fontKeys, null, 2)} as const; 62 | 63 | export type FontKey = typeof fontKeys[number] | AlternatingFontKey; 64 | 65 | export const fonts: Record = ${JSON.stringify({ ...fontsObject, ...alternatingFontsObject, normal: "Serif" }, null, 2)}; 66 | `; 67 | 68 | fs.writeFileSync(outputFile, tsCode); 69 | 70 | console.log(`Transforms have been generated and written to ${outputFile}`); -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://ui.shadcn.com/schema.json", 3 | "style": "default", 4 | "rsc": false, 5 | "tsx": true, 6 | "tailwind": { 7 | "config": "tailwind.config.ts", 8 | "css": "src/app/[locale]/globals.css", 9 | "baseColor": "slate", 10 | "cssVariables": true, 11 | "prefix": "" 12 | }, 13 | "aliases": { 14 | "components": "@/components", 15 | "utils": "@/lib/utils" 16 | } 17 | } -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- 1 | // Generated by Wrangler 2 | // by running `wrangler types --env-interface CloudflareEnv env.d.ts` 3 | 4 | interface CloudflareEnv { 5 | } 6 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev'; 2 | 3 | // Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development 4 | // (when running the application with `next dev`), for more information see: 5 | // https://github.com/cloudflare/next-on-pages/blob/main/internal-packages/next-dev/README.md 6 | if (process.env.NODE_ENV === 'development') { 7 | await setupDevPlatform(); 8 | } 9 | 10 | /** @type {import('next').NextConfig} */ 11 | import nextIntlPlugin from "next-intl/plugin"; 12 | const withNextIntl = nextIntlPlugin("./src/i18n.ts"); 13 | 14 | const nextConfig = { 15 | output: 'standalone', 16 | eslint: { 17 | dirs: ["src"], 18 | }, 19 | }; 20 | 21 | export default withNextIntl(nextConfig); 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "font-generator", 3 | "version": "0.3.6", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint", 10 | "pages:build": "npx @cloudflare/next-on-pages", 11 | "preview": "npm run pages:build && wrangler pages dev", 12 | "deploy": "npm run pages:build && wrangler pages deploy", 13 | "cf-typegen": "wrangler types --env-interface CloudflareEnv env.d.ts", 14 | "generate-markdown-data": "npx tsx bin/generateComponentsMarkdownData.ts", 15 | "generate-transforms": "npx tsx bin/transforms.ts", 16 | "add-data": "git add public/data", 17 | "add-transforms": "git add src/transforms.ts", 18 | "prepare": "husky install", 19 | "release": "npx standard-version", 20 | "publish:release": "git push --follow-tags origin main" 21 | }, 22 | "dependencies": { 23 | "@hookform/resolvers": "^3.9.0", 24 | "@next/third-parties": "^14.2.5", 25 | "@radix-ui/react-accordion": "^1.2.0", 26 | "@radix-ui/react-dialog": "^1.1.1", 27 | "@radix-ui/react-dropdown-menu": "^2.1.1", 28 | "@radix-ui/react-label": "^2.1.0", 29 | "@radix-ui/react-select": "^2.1.1", 30 | "@radix-ui/react-slot": "^1.1.0", 31 | "@radix-ui/react-switch": "^1.1.0", 32 | "axios": "^1.3.1", 33 | "class-variance-authority": "^0.7.0", 34 | "clsx": "^2.1.1", 35 | "deepmerge": "^4.3.1", 36 | "lucide-react": "^0.427.0", 37 | "next": "14.2.5", 38 | "next-google-adsense": "^1.0.12", 39 | "next-intl": "^3.17.2", 40 | "next-themes": "^0.3.0", 41 | "nextjs-toploader": "^1.6.12", 42 | "react": "^18", 43 | "react-dom": "^18", 44 | "react-hook-form": "^7.52.2", 45 | "react-icons": "^5.3.0", 46 | "react-markdown": "^9.0.1", 47 | "rehype-raw": "^7.0.0", 48 | "remark-gfm": "^4.0.0", 49 | "sharp": "^0.33.5", 50 | "tailwind-merge": "^2.5.2", 51 | "tailwindcss-animate": "^1.0.7", 52 | "usehooks-ts": "^3.1.0", 53 | "zod": "^3.23.8" 54 | }, 55 | "devDependencies": { 56 | "@cloudflare/next-on-pages": "^1.13.2", 57 | "@cloudflare/workers-types": "^4.20240806.0", 58 | "@tailwindcss/typography": "^0.5.14", 59 | "@types/node": "^20", 60 | "@types/react": "^18", 61 | "@types/react-dom": "^18", 62 | "eslint": "^8", 63 | "eslint-config-next": "14.2.5", 64 | "eslint-plugin-import": "^2.29.1", 65 | "eslint-plugin-next-on-pages": "^1.13.2", 66 | "eslint-plugin-react": "^7.35.0", 67 | "eslint-plugin-react-hooks": "^4.6.2", 68 | "husky": "^8.0.0", 69 | "postcss": "^8", 70 | "standard-version": "^9.5.0", 71 | "tailwindcss": "^3.4.1", 72 | "tsx": "^4.17.0", 73 | "typescript": "^5", 74 | "vercel": "^32.3.0", 75 | "wrangler": "^3.70.0" 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-7860359842411861, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /public/content/components/empty/de_DE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seadfeng/font-generator/ce29ad89624b14d730c258462426c0947075d90d/public/content/components/empty/de_DE.md -------------------------------------------------------------------------------- /public/content/components/empty/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seadfeng/font-generator/ce29ad89624b14d730c258462426c0947075d90d/public/content/components/empty/en.md -------------------------------------------------------------------------------- /public/content/components/empty/es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seadfeng/font-generator/ce29ad89624b14d730c258462426c0947075d90d/public/content/components/empty/es.md -------------------------------------------------------------------------------- /public/content/components/empty/fr.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/it.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/ja.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/ko.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/nl.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/pl.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/pt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/ru.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/sv.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/empty/tr.md: -------------------------------------------------------------------------------- 1 | # Facebook Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | -------------------------------------------------------------------------------- /public/content/components/empty/zh.md: -------------------------------------------------------------------------------- 1 | # Facebook Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Schriftgenerator 2 | 3 | > Erstellen Sie ganz einfach stilvollen Text für Facebook, X (ehemals Twitter) und andere soziale Medienplattformen. Passen Sie Schriften mit fetten, kursiven, ausgefallenen und coolen Stilen an, um Ihre Beiträge hervorzuheben. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/en.md: -------------------------------------------------------------------------------- 1 | # Font Generator 2 | 3 | > Easily generate stylish text for Facebook, X (formerly Twitter), and other social media platforms. Customize fonts with bold, italic, fancy, and cool styles to make your posts stand out. -------------------------------------------------------------------------------- /public/content/components/home/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de fuentes 2 | 3 | > Genera fácilmente texto elegante para Facebook, X (anteriormente Twitter) y otras plataformas de redes sociales. Personaliza las fuentes con estilos en negrita, cursiva, elegantes y geniales para que tus publicaciones se destaquen. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de polices 2 | 3 | > Générez facilement du texte stylé pour Facebook, X (anciennement Twitter) et d'autres plateformes de médias sociaux. Personnalisez les polices avec des styles gras, italiques, fantaisie et cool pour faire ressortir vos publications. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di caratteri 2 | 3 | > Genera facilmente testi eleganti per Facebook, X (precedentemente Twitter) e altre piattaforme di social media. Personalizza i caratteri con stili in grassetto, corsivo, fantasiosi e cool per far risaltare i tuoi post. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/ja.md: -------------------------------------------------------------------------------- 1 | # フォントジェネレーター 2 | 3 | > Facebook、X(旧Twitter)、その他のソーシャルメディアプラットフォーム向けにスタイリッシュなテキストを簡単に生成できます。太字、斜体、ファンシー、クールなスタイルでフォントをカスタマイズして、投稿を際立たせましょう。 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 폰트 생성기 2 | 3 | > Facebook, X(구 Twitter) 및 기타 소셜 미디어 플랫폼을 위한 스타일리시한 텍스트를 쉽게 생성하세요. 굵게, 기울임꼴, 화려한 스타일과 멋진 스타일로 폰트를 맞춤 설정하여 게시물이 돋보이게 만드세요. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Lettertypegenerator 2 | 3 | > Genereer eenvoudig stijlvolle tekst voor Facebook, X (voorheen Twitter) en andere sociale mediaplatforms. Pas lettertypen aan met vetgedrukte, cursieve, sierlijke en coole stijlen om je berichten op te laten vallen. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator czcionek 2 | 3 | > Łatwo generuj stylowy tekst na Facebooka, X (dawniej Twitter) i inne platformy społecznościowe. Dostosuj czcionki za pomocą pogrubionych, kursywnych, fantazyjnych i fajnych stylów, aby wyróżnić swoje posty. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de fontes 2 | 3 | > Gere texto estiloso facilmente para Facebook, X (anteriormente Twitter) e outras plataformas de mídia social. Personalize as fontes com estilos em negrito, itálico, extravagante e legal para fazer suas postagens se destacarem. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор шрифтов 2 | 3 | > Легко создавайте стильный текст для Facebook, X (ранее Twitter) и других социальных сетей. Настраивайте шрифты с помощью жирных, курсивных, причудливых и крутых стилей, чтобы ваши посты выделялись. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Teckengenerator 2 | 3 | > Skapa enkelt stilren text för Facebook, X (tidigare Twitter) och andra sociala medieplattformar. Anpassa typsnitt med fetstil, kursiv, fantasifulla och coola stilar för att få dina inlägg att sticka ut. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Yazı Tipi Üreticisi 2 | 3 | > Facebook, X (eski adıyla Twitter) ve diğer sosyal medya platformları için şık metinleri kolayca oluşturun. Gönderilerinizin öne çıkması için yazı tiplerini kalın, italik, havalı ve fantezi stillerle özelleştirin. 4 | -------------------------------------------------------------------------------- /public/content/components/home/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 字体生成器 2 | 3 | > 轻松为 Facebook、X(前称 Twitter)和其他社交媒体平台生成时尚文本。使用粗体、斜体、花式和酷炫样式自定义字体,让您的帖子脱颖而出。 4 | -------------------------------------------------------------------------------- /public/content/components/home/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Alternierender Schriftgenerator 2 | 3 | > Erstelle auffälligen Text mit alternierenden Buchstabenstilen. Verwandle deinen Text in einzigartige Muster, bei denen jeder Buchstabe zwischen verschiedenen Stilen wechselt. Perfekt, um in sozialen Medien aufzufallen. 4 | 5 | Ein alternierender Schriftgenerator wandelt deinen Text automatisch in ein Muster um, bei dem jeder Buchstabe zwischen verschiedenen Stilen wechselt. Dies erzeugt einen einzigartigen, aufmerksamkeitsstarken Effekt, der deinen Text auf Social-Media-Plattformen, in Nachrichten und digitalen Inhalten hervorhebt. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/en.md: -------------------------------------------------------------------------------- 1 | # Alternating Font Generator 2 | 3 | > Create eye-catching text with alternating letter styles. Transform your text into unique patterns where each letter alternates between different styles. Perfect for standing out on social media. 4 | 5 | An alternating font generator automatically converts your text into a pattern where each letter switches between different styles. This creates a unique, attention-grabbing effect that makes your text stand out on social media platforms, messages, and digital content. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Fuentes Alternadas 2 | 3 | > Crea texto llamativo con estilos de letras alternados. Transforma tu texto en patrones únicos donde cada letra alterna entre diferentes estilos. Perfecto para destacar en las redes sociales. 4 | 5 | Un generador de fuentes alternadas convierte automáticamente tu texto en un patrón donde cada letra cambia entre diferentes estilos. Esto crea un efecto único y llamativo que hace que tu texto destaque en plataformas de redes sociales, mensajes y contenido digital. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Polices Alternées 2 | 3 | > Créez du texte accrocheur avec des styles de lettres alternés. Transformez votre texte en motifs uniques où chaque lettre alterne entre différents styles. Parfait pour se démarquer sur les réseaux sociaux. 4 | 5 | Un générateur de polices alternées convertit automatiquement votre texte en un motif où chaque lettre alterne entre différents styles. Cela crée un effet unique et attrayant qui fait ressortir votre texte sur les plateformes de médias sociaux, les messages et le contenu numérique. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Font Alternati 2 | 3 | > Crea testi accattivanti con stili di carattere alternati. Trasforma il tuo testo in motivi unici dove ogni lettera alterna tra diversi stili. Perfetto per distinguersi sui social media. 4 | 5 | Un generatore di font alternati converte automaticamente il tuo testo in un motivo dove ogni lettera si alterna tra diversi stili. Questo crea un effetto unico e accattivante che fa risaltare il tuo testo sulle piattaforme social, nei messaggi e nei contenuti digitali. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/ja.md: -------------------------------------------------------------------------------- 1 | # 交互フォントジェネレーター 2 | 3 | > 文字スタイルを交互に切り替えて目を引くテキストを作成。各文字が異なるスタイルで交互に表示される独特なパターンにテキストを変換します。SNSで目立つのに最適です。 4 | 5 | 交互フォントジェネレーターは、文字ごとに異なるスタイルを交互に切り替えるパターンに自動的にテキストを変換します。これにより、SNSプラットフォーム、メッセージ、デジタルコンテンツで際立つ、ユニークで注目を集める効果を生み出します。 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 교차 폰트 생성기 2 | 3 | > 교차하는 글자 스타일로 눈길을 사로잡는 텍스트를 만드세요. 각 글자가 서로 다른 스타일로 번갈아 나타나는 독특한 패턴으로 텍스트를 변환합니다. 소셜 미디어에서 돋보이기에 완벽합니다. 4 | 5 | 교차 폰트 생성기는 각 글자가 서로 다른 스타일로 번갈아 가며 바뀌는 패턴으로 텍스트를 자동 변환합니다. 이는 소셜 미디어 플랫폼, 메시지, 디지털 콘텐츠에서 돋보이는 독특하고 주목을 끄는 효과를 만들어냅니다. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Alternerende Lettertype Generator 2 | 3 | > Creëer opvallende tekst met afwisselende letterstijlen. Transformeer je tekst in unieke patronen waarbij elke letter wisselt tussen verschillende stijlen. Perfect om op te vallen op sociale media. 4 | 5 | Een alternerende lettertype generator zet je tekst automatisch om in een patroon waarbij elke letter wisselt tussen verschillende stijlen. Dit creëert een uniek, aandachttrekkend effect waardoor je tekst opvalt op sociale mediaplatforms, berichten en digitale content. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Naprzemiennych Czcionek 2 | 3 | > Twórz przyciągający wzrok tekst z naprzemiennymi stylami liter. Przekształć swój tekst w unikalne wzory, gdzie każda litera alternuje między różnymi stylami. Idealny do wyróżnienia się w mediach społecznościowych. 4 | 5 | Generator naprzemiennych czcionek automatycznie przekształca tekst w wzór, w którym każda litera przełącza się między różnymi stylami. Tworzy to unikalny, przyciągający uwagę efekt, który sprawia, że twój tekst wyróżnia się na platformach społecznościowych, w wiadomościach i treściach cyfrowych. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Fontes Alternadas 2 | 3 | > Crie textos chamativos com estilos de letras alternados. Transforme seu texto em padrões únicos onde cada letra alterna entre diferentes estilos. Perfeito para se destacar nas redes sociais. 4 | 5 | Um gerador de fontes alternadas converte automaticamente seu texto em um padrão onde cada letra alterna entre diferentes estilos. Isso cria um efeito único e chamativo que faz seu texto se destacar em plataformas de redes sociais, mensagens e conteúdo digital. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Чередующихся Шрифтов 2 | 3 | > Создавайте привлекательный текст с чередующимися стилями букв. Преобразуйте свой текст в уникальные узоры, где каждая буква чередуется между разными стилями. Идеально подходит для выделения в социальных сетях. 4 | 5 | Генератор чередующихся шрифтов автоматически преобразует ваш текст в узор, где каждая буква переключается между разными стилями. Это создает уникальный, привлекающий внимание эффект, который выделяет ваш текст на платформах социальных сетей, в сообщениях и цифровом контенте. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Alternerande Typsnittsgenerator 2 | 3 | > Skapa iögonfallande text med alternerande bokstavsstilar. Förvandla din text till unika mönster där varje bokstav växlar mellan olika stilar. Perfekt för att sticka ut i sociala medier. 4 | 5 | En alternerande typsnittsgenerator konverterar automatiskt din text till ett mönster där varje bokstav växlar mellan olika stilar. Detta skapar en unik, uppmärksamhetsväckande effekt som får din text att sticka ut på sociala medieplattformar, i meddelanden och digitalt innehåll. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Değişken Yazı Tipi Üreteci 2 | 3 | > Değişen harf stilleriyle dikkat çekici metinler oluşturun. Metninizi her harfin farklı stiller arasında değiştiği benzersiz desenlere dönüştürün. Sosyal medyada öne çıkmak için mükemmel. 4 | 5 | Değişken yazı tipi üreteci, metninizi her harfin farklı stiller arasında değiştiği bir desene otomatik olarak dönüştürür. Bu, sosyal medya platformlarında, mesajlarda ve dijital içerikte metninizin öne çıkmasını sağlayan benzersiz, dikkat çekici bir efekt yaratır. 6 | -------------------------------------------------------------------------------- /public/content/components/style/alternating/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 交替字体生成器 2 | 3 | > 创建具有交替字母样式的醒目文本。将您的文本转换为独特的模式,每个字母在不同样式之间交替变换。非常适合在社交媒体上脱颖而出。 4 | 5 | 交替字体生成器自动将您的文本转换为每个字母在不同样式之间交替的模式。这创造了一个独特的、引人注目的效果,使您的文本在社交媒体平台、消息和数字内容中脱颖而出。 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Fett Kursiv Text Generator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriftarten online 4 | 5 | **Verwandeln Sie Ihren Text mit unserem Fett Kursiv-Generator!** Erstellen Sie mühelos stilvolle und einzigartige fett kursiv Schriftarten, die in sozialen Medien, auf Websites und in digitalen Inhalten hervorstechen. Perfekt, um Ihrem Text einen Hauch von Eleganz und Betonung zu verleihen, bietet unser Generator eine nahtlose Möglichkeit, Ihre Typografie zu verbessern. **Erzeugen Sie fett kursiven Text** für Facebook, Instagram, Twitter und mehr. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/en.md: -------------------------------------------------------------------------------- 1 | # Bold Italic Text Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | **Transform your text with our Bold Italic generator!** Easily create stylish and unique bold italic fonts that stand out on social media, websites, and digital content. Perfect for adding a touch of elegance and emphasis to your text, our generator offers a seamless way to enhance your typography. **Generate bold italic text** for Facebook, Instagram, Twitter, and more. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Texto en Negrita y Cursiva 2 | 3 | > Crea fuentes estéticas únicas en línea 4 | 5 | **¡Transforma tu texto con nuestro generador de Negrita y Cursiva!** Crea fácilmente fuentes en negrita y cursiva que destacan en redes sociales, sitios web y contenido digital. Perfecto para agregar un toque de elegancia y énfasis a tu texto, nuestro generador ofrece una manera sencilla de mejorar tu tipografía. **Genera texto en negrita y cursiva** para Facebook, Instagram, Twitter y más. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Texte en Gras Italique 2 | 3 | > Créez des polices esthétiques uniques en ligne 4 | 5 | **Transformez votre texte avec notre générateur de Gras Italique !** Créez facilement des polices en gras italique élégantes et uniques qui se démarquent sur les réseaux sociaux, les sites Web et le contenu numérique. Parfait pour ajouter une touche d'élégance et d'emphase à votre texte, notre générateur offre un moyen simple d'améliorer votre typographie. **Générez du texte en gras italique** pour Facebook, Instagram, Twitter et plus encore. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Testo in Grassetto Corsivo 2 | 3 | > Crea font estetici unici online 4 | 5 | **Trasforma il tuo testo con il nostro generatore di Grassetto Corsivo!** Crea facilmente font in grassetto corsivo eleganti e unici che si distinguono sui social media, siti web e contenuti digitali. Perfetto per aggiungere un tocco di eleganza e enfasi al tuo testo, il nostro generatore offre un modo semplice per migliorare la tua tipografia. **Genera testo in grassetto corsivo** per Facebook, Instagram, Twitter e altro ancora. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/ja.md: -------------------------------------------------------------------------------- 1 | # 太字斜体テキストジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | **太字斜体ジェネレーターでテキストを変換しましょう!** ソーシャルメディア、ウェブサイト、デジタルコンテンツで際立つ、スタイリッシュでユニークな太字斜体フォントを簡単に作成できます。テキストにエレガンスと強調を加えるのに最適で、タイポグラフィを向上させるシームレスな方法を提供します。 **Facebook、Instagram、Twitter などのための太字斜体テキストを生成します。** 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 굵은 이탤릭체 텍스트 생성기 2 | 3 | > 독특한 미적 글꼴을 온라인에서 생성하세요 4 | 5 | **우리의 굵은 이탤릭체 생성기로 텍스트를 변환하세요!** 소셜 미디어, 웹사이트 및 디지털 콘텐츠에서 돋보이는 스타일리시하고 독특한 굵은 이탤릭체 글꼴을 쉽게 만들 수 있습니다. 텍스트에 우아함과 강조를 추가하는 데 적합하며, 타이포그래피를 향상시키는 원활한 방법을 제공합니다. **Facebook, Instagram, Twitter 등을 위한 굵은 이탤릭체 텍스트를 생성하세요.** 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Vet Cursief Tekstgenerator 2 | 3 | > Creëer unieke esthetische lettertypen online 4 | 5 | **Transformeer je tekst met onze Vet Cursief generator!** Maak eenvoudig stijlvolle en unieke vet cursieve lettertypen die opvallen op sociale media, websites en digitale content. Perfect om een vleugje elegantie en nadruk aan je tekst toe te voegen, biedt onze generator een naadloze manier om je typografie te verbeteren. **Genereer vet cursieve tekst** voor Facebook, Instagram, Twitter en meer. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Tekstu Pogrubionego i Kursywą 2 | 3 | > Twórz unikalne estetyczne czcionki online 4 | 5 | **Przekształć swój tekst za pomocą naszego generatora Pogrubionego i Kursywą!** Łatwo twórz stylowe i unikalne pogrubione kursywy, które wyróżnią się w mediach społecznościowych, na stronach internetowych i w treściach cyfrowych. Idealny do dodania elegancji i podkreślenia tekstu, nasz generator oferuje bezproblemowy sposób na poprawę typografii. **Generuj pogrubiony kursywny tekst** dla Facebooka, Instagrama, Twittera i innych. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Texto em Negrito e Itálico 2 | 3 | > Crie fontes estéticas únicas online 4 | 5 | **Transforme seu texto com nosso gerador de Negrito e Itálico!** Crie facilmente fontes em negrito e itálico que se destacam nas redes sociais, sites e conteúdos digitais. Perfeito para adicionar um toque de elegância e ênfase ao seu texto, nosso gerador oferece uma maneira perfeita de melhorar sua tipografia. **Gere texto em negrito e itálico** para Facebook, Instagram, Twitter e mais. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Жирного Курсивного Текста 2 | 3 | > Создавайте уникальные эстетические шрифты онлайн 4 | 5 | **Преобразуйте свой текст с помощью нашего генератора Жирного Курсивного Текста!** Легко создавайте стильные и уникальные жирные курсивные шрифты, которые выделяются в социальных сетях, на веб-сайтах и в цифровом контенте. Идеально подходит для добавления элегантности и акцента на ваш текст, наш генератор предлагает простой способ улучшить вашу типографику. **Генерируйте жирный курсивный текст** для Facebook, Instagram, Twitter и других платформ. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Fet Kursiv Textgenerator 2 | 3 | > Skapa unika estetiska typsnitt online 4 | 5 | **Förvandla din text med vår Fet Kursiv generator!** Skapa enkelt snygga och unika feta kursiva typsnitt som sticker ut på sociala medier, webbplatser och digitalt innehåll. Perfekt för att lägga till en touch av elegans och betoning till din text, vår generator erbjuder ett sömlöst sätt att förbättra din typografi. **Generera fet kursiv text** för Facebook, Instagram, Twitter och mer. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Kalın İtalik Metin Oluşturucu 2 | 3 | > Çevrimiçi Olarak Benzersiz Estetik Yazı Tipleri Oluşturun 4 | 5 | **Kalın İtalik oluşturucumuzla metninizi dönüştürün!** Sosyal medya, web siteleri ve dijital içerikte öne çıkan şık ve benzersiz kalın italik yazı tiplerini kolayca oluşturun. Metninize zarafet ve vurgu katmak için mükemmeldir, oluşturucumuz tipografinizi geliştirmenin sorunsuz bir yolunu sunar. **Facebook, Instagram, Twitter ve daha fazlası için kalın italik metin oluşturun.** 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 粗斜体文字生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | **使用我们的粗斜体生成器来转换您的文本!** 轻松创建时尚且独特的粗斜体字体,在社交媒体、网站和数字内容中脱颖而出。非常适合为您的文本增添优雅和强调,我们的生成器提供了一种无缝的方式来增强您的排版。**生成用于 Facebook、Instagram、Twitter 等平台的粗斜体文本。** 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-italic/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Fettgedruckter Text Generator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriftarten online 4 | 5 | Willkommen beim **Fettgedruckter Text** Generator! Verwandeln Sie Ihren Text in atemberaubende, einzigartige Stile und verbessern Sie Ihre Online-Präsenz mit nur wenigen Klicks. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/en.md: -------------------------------------------------------------------------------- 1 | # Bold Text Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Welcome to the **Bold Text** Generator! Transform your text into stunning, unique styles and enhance your online presence with just a few clicks. -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Texto en Negrita 2 | 3 | > Crea fuentes estéticas únicas en línea 4 | 5 | ¡Bienvenido al **Generador de Texto en Negrita**! Transforma tu texto en estilos sorprendentes y únicos, y mejora tu presencia en línea con solo unos pocos clics. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Texte en Gras 2 | 3 | > Créez des polices esthétiques uniques en ligne 4 | 5 | Bienvenue dans le **Générateur de Texte en Gras** ! Transformez votre texte en styles époustouflants et uniques et améliorez votre présence en ligne en quelques clics. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Testo in Grassetto 2 | 3 | > Crea font estetici unici online 4 | 5 | Benvenuto nel **Generatore di Testo in Grassetto**! Trasforma il tuo testo in stili sorprendenti e unici e migliora la tua presenza online con pochi clic. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/ja.md: -------------------------------------------------------------------------------- 1 | # 太字テキストジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | **太字テキスト**ジェネレーターへようこそ!テキストを驚くほどユニークなスタイルに変換し、数回のクリックでオンラインでの存在感を高めましょう。 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 굵은 텍스트 생성기 2 | 3 | > 독특한 미적 글꼴을 온라인에서 생성 4 | 5 | **굵은 텍스트** 생성기에 오신 것을 환영합니다! 텍스트를 멋지고 독특한 스타일로 변환하고 몇 번의 클릭만으로 온라인 존재감을 높이세요. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Vetgedrukte Tekst Generator 2 | 3 | > Creëer unieke esthetische lettertypen online 4 | 5 | Welkom bij de **Vetgedrukte Tekst** Generator! Transformeer je tekst in verbluffende, unieke stijlen en verbeter je online aanwezigheid met slechts een paar klikken. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Tekstu Pogrubionego 2 | 3 | > Twórz unikalne estetyczne czcionki online 4 | 5 | Witamy w **Generatorze Tekstu Pogrubionego**! Przekształć swój tekst w oszałamiające, unikalne style i popraw swoją obecność online za pomocą kilku kliknięć. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Texto em Negrito 2 | 3 | > Crie fontes estéticas únicas online 4 | 5 | Bem-vindo ao **Gerador de Texto em Negrito**! Transforme seu texto em estilos impressionantes e únicos e melhore sua presença online com apenas alguns cliques. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Жирного Текста 2 | 3 | > Создавайте уникальные эстетические шрифты онлайн 4 | 5 | Добро пожаловать в **Генератор Жирного Текста**! Преобразуйте свой текст в потрясающие, уникальные стили и улучшите свое онлайн-присутствие всего несколькими щелчками. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Fet Text Generator 2 | 3 | > Skapa unika estetiska typsnitt online 4 | 5 | Välkommen till **Fet Text** Generator! Förvandla din text till fantastiska, unika stilar och förbättra din online-närvaro med bara några klick. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Kalın Metin Oluşturucu 2 | 3 | > Çevrimiçi Olarak Benzersiz Estetik Yazı Tipleri Oluşturun 4 | 5 | **Kalın Metin** Oluşturucuya hoş geldiniz! Metninizi çarpıcı, benzersiz stillere dönüştürün ve yalnızca birkaç tıklamayla çevrimiçi varlığınızı artırın. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 粗体文本生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 欢迎使用 **粗体文本** 生成器!只需点击几下,便可将您的文本转换为令人惊叹的独特风格,并增强您的在线存在感。 6 | -------------------------------------------------------------------------------- /public/content/components/style/bold-text/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Blasentext-Generator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriftarten online 4 | 5 | Verwandeln Sie Ihren Text mit unserem **Blasentext-Generator**! Erstellen Sie auffällige, blasenartige Schriftarten, die herausstechen und Ihren Inhalt zum Platzen bringen. Egal, ob Sie Ihren Social-Media-Beiträgen eine spielerische Note verleihen oder ansprechende Grafiken gestalten möchten, unser Tool macht es einfach, Blasentext in nur wenigen Schritten zu generieren. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/en.md: -------------------------------------------------------------------------------- 1 | # Bubble Text Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Transform your text with our **Bubble Text Generator**! Create eye-catching, bubbly fonts that stand out and make your content pop. Whether you’re looking to add a playful touch to your social media posts or design engaging graphics, our tool makes it easy to generate bubble text in just a few steps. -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Texto de Burbujas 2 | 3 | > Crea fuentes estéticas únicas en línea 4 | 5 | ¡Transforma tu texto con nuestro **Generador de Texto de Burbujas**! Crea fuentes llamativas y burbujeantes que destacan y hacen que tu contenido se resalte. Ya sea que desees agregar un toque divertido a tus publicaciones en redes sociales o diseñar gráficos atractivos, nuestra herramienta facilita la generación de texto de burbujas en solo unos pocos pasos. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Texte en Bulles 2 | 3 | > Créez des polices esthétiques uniques en ligne 4 | 5 | Transformez votre texte avec notre **Générateur de Texte en Bulles** ! Créez des polices accrocheuses et pleines de bulles qui se démarquent et rendent votre contenu percutant. Que vous souhaitiez ajouter une touche ludique à vos publications sur les réseaux sociaux ou concevoir des graphiques engageants, notre outil facilite la génération de texte en bulles en quelques étapes simples. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Testo a Bolle 2 | 3 | > Crea font estetici unici online 4 | 5 | Trasforma il tuo testo con il nostro **Generatore di Testo a Bolle**! Crea font accattivanti e pieni di bolle che si distinguono e fanno risaltare il tuo contenuto. Che tu voglia aggiungere un tocco giocoso ai tuoi post sui social media o progettare grafiche coinvolgenti, il nostro strumento rende facile generare testo a bolle in pochi semplici passaggi. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/ja.md: -------------------------------------------------------------------------------- 1 | # バブルテキストジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | **バブルテキストジェネレーター**でテキストを変換しましょう!目を引くバブルフォントを作成し、コンテンツを際立たせましょう。ソーシャルメディア投稿に遊び心を加える場合でも、魅力的なグラフィックをデザインする場合でも、バブルテキストを簡単に生成できます。 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 버블 텍스트 생성기 2 | 3 | > 독특한 미적 글꼴을 온라인에서 생성 4 | 5 | **버블 텍스트 생성기**로 텍스트를 변환하세요! 눈길을 사로잡는 버블 글꼴을 만들어 콘텐츠를 돋보이게 하고 생기를 불어넣으세요. 소셜 미디어 게시물에 장난기 있는 터치를 추가하거나 매력적인 그래픽을 디자인하려는 경우, 이 도구를 사용하면 몇 단계만으로 버블 텍스트를 쉽게 생성할 수 있습니다. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Bellen Tekst Generator 2 | 3 | > Creëer unieke esthetische lettertypen online 4 | 5 | Transformeer je tekst met onze **Bellen Tekst Generator**! Maak opvallende, bubbelachtige lettertypen die opvallen en je inhoud laten knallen. Of je nu een speels tintje wilt toevoegen aan je social media posts of boeiende grafieken wilt ontwerpen, met onze tool kun je in slechts enkele stappen bellen tekst genereren. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Tekstu Bąbelkowego 2 | 3 | > Twórz unikalne estetyczne czcionki online 4 | 5 | Przekształć swój tekst za pomocą naszego **Generatora Tekstu Bąbelkowego**! Twórz przyciągające wzrok, bąbelkowe czcionki, które wyróżniają się i dodają dynamiki Twoim treściom. Niezależnie od tego, czy chcesz dodać zabawny akcent do postów w mediach społecznościowych, czy projektować angażujące grafiki, nasze narzędzie ułatwia generowanie tekstu bąbelkowego w zaledwie kilku krokach. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Texto em Bolha 2 | 3 | > Crie fontes estéticas únicas online 4 | 5 | Transforme seu texto com nosso **Gerador de Texto em Bolha**! Crie fontes chamativas e cheias de bolhas que se destacam e fazem seu conteúdo brilhar. Quer você esteja procurando adicionar um toque divertido às suas postagens nas redes sociais ou projetar gráficos envolventes, nossa ferramenta facilita a geração de texto em bolha em apenas alguns passos. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Пузырькового Текста 2 | 3 | > Создавайте уникальные эстетические шрифты онлайн 4 | 5 | Преобразуйте свой текст с помощью нашего **Генератора Пузырькового Текста**! Создавайте привлекательные пузырьковые шрифты, которые выделяются и делают ваш контент ярким. Будь то добавление игривого акцента в ваши публикации в социальных сетях или создание увлекательной графики, наш инструмент позволяет легко создать пузырьковый текст всего за несколько шагов. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Bubbeltext Generator 2 | 3 | > Skapa unika estetiska typsnitt online 4 | 5 | Förvandla din text med vår **Bubbeltext Generator**! Skapa iögonfallande, bubbliga typsnitt som sticker ut och gör ditt innehåll livfullt. Oavsett om du vill lägga till en lekfull touch till dina inlägg på sociala medier eller designa engagerande grafik, gör vårt verktyg det enkelt att generera bubbeltext på bara några få steg. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Baloncuk Yazı Oluşturucu 2 | 3 | > Çevrimiçi Olarak Benzersiz Estetik Yazı Tipleri Oluşturun 4 | 5 | Metninizi **Baloncuk Yazı Oluşturucu** ile dönüştürün! Göz alıcı, baloncuklu yazı tipleri oluşturun ve içeriğinizi öne çıkarın. İster sosyal medya gönderilerinize eğlenceli bir dokunuş eklemek, ister ilgi çekici grafikler tasarlamak isteyin, aracımız baloncuklu metni birkaç adımda oluşturmayı kolaylaştırır. 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 泡泡文字生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**泡泡文字生成器**转换您的文本!创建引人注目的泡泡字体,使您的内容脱颖而出。无论您是想为社交媒体帖子添加一丝俏皮感,还是设计引人入胜的图形,我们的工具都可以让您轻松地在几步之内生成泡泡文字。 6 | -------------------------------------------------------------------------------- /public/content/components/style/bubble-text/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Cooler Textgenerator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriftarten online 4 | 5 | Entfesseln Sie Ihre Kreativität mit unserem **Coolen Textgenerator**! Verwandeln Sie Ihren gewöhnlichen Text in auffällige, stilvolle Schriftarten, die Ihren Inhalt hervorheben. Perfekt für soziale Medien, Blogs und digitale Designs bietet unser Tool eine Vielzahl von coolen Textstilen, um Ihr visuelles Inhalt zu verbessern. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/en.md: -------------------------------------------------------------------------------- 1 | # Cool Text Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Unleash your creativity with our **Cool Text Generator**! Transform your ordinary text into striking, stylish fonts that make your content stand out. Perfect for social media, blogs, and digital designs, our tool offers a variety of cool text styles to enhance your visual content. -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Texto Cool 2 | 3 | > Crea fuentes estéticas únicas en línea 4 | 5 | ¡Desata tu creatividad con nuestro **Generador de Texto Cool**! Transforma tu texto ordinario en fuentes llamativas y elegantes que hacen que tu contenido destaque. Perfecto para redes sociales, blogs y diseños digitales, nuestra herramienta ofrece una variedad de estilos de texto cool para mejorar tu contenido visual. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Texte Cool 2 | 3 | > Créez des polices esthétiques uniques en ligne 4 | 5 | Libérez votre créativité avec notre **Générateur de Texte Cool** ! Transformez votre texte ordinaire en polices saisissantes et stylées qui feront ressortir votre contenu. Parfait pour les réseaux sociaux, les blogs et les designs numériques, notre outil propose une variété de styles de texte cool pour améliorer votre contenu visuel. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Testo Cool 2 | 3 | > Crea font estetici unici online 4 | 5 | Libera la tua creatività con il nostro **Generatore di Testo Cool**! Trasforma il tuo testo ordinario in caratteri sorprendenti e stilosi che fanno risaltare i tuoi contenuti. Perfetto per i social media, i blog e i design digitali, il nostro strumento offre una varietà di stili di testo cool per migliorare i tuoi contenuti visivi. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/ja.md: -------------------------------------------------------------------------------- 1 | # クールテキストジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | **クールテキストジェネレーター**で創造力を解き放ちましょう!普通のテキストを目を引くスタイリッシュなフォントに変換し、コンテンツを際立たせます。ソーシャルメディア、ブログ、デジタルデザインに最適なこのツールは、視覚コンテンツを強化するためのさまざまなクールなテキストスタイルを提供します。 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 멋진 텍스트 생성기 2 | 3 | > 온라인에서 독특한 미적 글꼴을 생성하세요 4 | 5 | **멋진 텍스트 생성기**로 창의력을 발휘해 보세요! 평범한 텍스트를 눈에 띄고 스타일리시한 글꼴로 변환하여 콘텐츠를 돋보이게 하세요. 소셜 미디어, 블로그, 디지털 디자인에 완벽하게 어울리는 이 도구는 시각적 콘텐츠를 향상시키기 위한 다양한 멋진 텍스트 스타일을 제공합니다. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Coole Tekst Generator 2 | 3 | > Creëer unieke esthetische lettertypen online 4 | 5 | Ontketen je creativiteit met onze **Coole Tekst Generator**! Verander je gewone tekst in opvallende, stijlvolle lettertypen die je inhoud laten opvallen. Perfect voor sociale media, blogs en digitale ontwerpen, biedt onze tool een verscheidenheid aan coole tekststijlen om je visuele inhoud te verbeteren. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Fajnego Tekstu 2 | 3 | > Twórz unikalne estetyczne czcionki online 4 | 5 | Uwolnij swoją kreatywność dzięki naszemu **Generatorowi Fajnego Tekstu**! Przekształć swój zwykły tekst w przyciągające wzrok, stylowe czcionki, które wyróżnią Twoje treści. Idealne do mediów społecznościowych, blogów i projektów cyfrowych, nasze narzędzie oferuje różnorodne fajne style tekstu, które wzbogacą Twoje treści wizualne. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Texto Cool 2 | 3 | > Crie fontes estéticas únicas online 4 | 5 | Liberte sua criatividade com o nosso **Gerador de Texto Cool**! Transforme seu texto comum em fontes marcantes e elegantes que destacam seu conteúdo. Perfeito para redes sociais, blogs e designs digitais, nossa ferramenta oferece uma variedade de estilos de texto cool para aprimorar seu conteúdo visual. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Пузырькового Текста 2 | 3 | > Создавайте уникальные эстетические шрифты онлайн 4 | 5 | Преобразуйте свой текст с помощью нашего **Генератора Пузырькового Текста**! Создавайте привлекательные пузырьковые шрифты, которые выделяются и делают ваш контент ярким. Будь то добавление игривого акцента в ваши публикации в социальных сетях или создание увлекательной графики, наш инструмент позволяет легко создать пузырьковый текст всего за несколько шагов. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Cool Text Generator 2 | 3 | > Skapa unika estetiska typsnitt online 4 | 5 | Frigör din kreativitet med vår **Cool Text Generator**! Förvandla din vanliga text till slående, stilfulla typsnitt som får ditt innehåll att sticka ut. Perfekt för sociala medier, bloggar och digitala designer, erbjuder vårt verktyg en mängd olika coola textstilar för att förbättra ditt visuella innehåll. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Havalı Metin Oluşturucu 2 | 3 | > Çevrimiçi Eşsiz Estetik Yazı Tipleri Oluşturun 4 | 5 | **Havalı Metin Oluşturucumuz** ile yaratıcılığınızı ortaya çıkarın! Sıradan metninizi çarpıcı, şık yazı tiplerine dönüştürün ve içeriğinizi öne çıkarın. Sosyal medya, bloglar ve dijital tasarımlar için mükemmel olan bu aracımız, görsel içeriğinizi geliştirmek için çeşitli havalı metin stilleri sunar. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 酷炫文字生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**酷炫文字生成器**释放您的创造力!将普通的文字转换为引人注目的时尚字体,让您的内容脱颖而出。无论是社交媒体、博客,还是数字设计,我们的工具都能为您提供多种酷炫的文字样式,以增强您的视觉内容。 6 | -------------------------------------------------------------------------------- /public/content/components/style/cool/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Cooler Textgenerator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriftarten online 4 | 5 | Entfesseln Sie Ihre Kreativität mit unserem **Coolen Textgenerator**! Verwandeln Sie Ihren gewöhnlichen Text in auffällige, stilvolle Schriftarten, die Ihren Inhalt hervorheben. Perfekt für soziale Medien, Blogs und digitale Designs bietet unser Tool eine Vielzahl von coolen Textstilen, um Ihr visuelles Inhalt zu verbessern. 6 | -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/en.md: -------------------------------------------------------------------------------- 1 | # Cursive Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Add a touch of elegance to your text with our **Cursive Font Generator**! This tool transforms your words into flowing, handwriting-like scripts, bringing a hint of sophistication and personal flair to your digital content. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Fuentes Cursivas 2 | 3 | > Crea Fuentes Estéticas Únicas en Línea 4 | 5 | ¡Añade un toque de elegancia a tu texto con nuestro **Generador de Fuentes Cursivas**! Esta herramienta transforma tus palabras en escritura fluida y caligráfica, aportando un toque de sofisticación y estilo personal a tu contenido digital. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Police Cursive 2 | 3 | > Créez des Polices Esthétiques Uniques en Ligne 4 | 5 | Ajoutez une touche d'élégance à votre texte avec notre **Générateur de Police Cursive** ! Cet outil transforme vos mots en une écriture fluide et calligraphique, apportant une touche de sophistication et de style personnel à votre contenu numérique. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Font Corsivo 2 | 3 | > Crea Font Estetici Unici Online 4 | 5 | Aggiungi un tocco di eleganza al tuo testo con il nostro **Generatore di Font Corsivo**! Questo strumento trasforma le tue parole in una scrittura fluida e calligrafica, portando un tocco di sofisticatezza e stile personale al tuo contenuto digitale. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/ja.md: -------------------------------------------------------------------------------- 1 | # 筆記体フォントジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | 私たちの**筆記体フォントジェネレーター**であなたのテキストにエレガントな雰囲気を加えましょう!このツールはあなたの言葉を流麗な手書き風の文字に変換し、デジタルコンテンツに洗練さと個人的なスタイルの魅力をもたらします。 -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 필기체 폰트 생성기 2 | 3 | > 온라인에서 독특한 미적 폰트 만들기 4 | 5 | 우리의 **필기체 폰트 생성기**로 당신의 텍스트에 우아함을 더하세요! 이 도구는 당신의 단어를 유려하고 손글씨 같은 서체로 변환하여, 디지털 콘텐츠에 세련미와 개인적인 스타일을 부여합니다. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Cursief Lettertype Generator 2 | 3 | > Creëer Unieke Esthetische Lettertypen Online 4 | 5 | Voeg een vleugje elegantie toe aan je tekst met onze **Cursief Lettertype Generator**! Deze tool transformeert je woorden in vloeiend, handschriftachtig schrift en geeft je digitale content een toets van verfijning en persoonlijke stijl. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Czcionki Kursywy 2 | 3 | > Twórz Unikalne Estetyczne Czcionki Online 4 | 5 | Dodaj nutę elegancji do swojego tekstu dzięki naszemu **Generatorowi Czcionki Kursywy**! To narzędzie przekształca Twoje słowa w płynne, odręczne pismo, nadając Twojej cyfrowej treści szczyptę wyrafinowania i osobistego stylu. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Fonte Cursiva 2 | 3 | > Crie Fontes Estéticas Únicas Online 4 | 5 | Adicione um toque de elegância ao seu texto com nosso **Gerador de Fonte Cursiva**! Esta ferramenta transforma suas palavras em uma escrita fluida e caligráfica, trazendo um toque de sofisticação e estilo pessoal ao seu conteúdo digital. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Курсивных Шрифтов 2 | 3 | > Создавайте Уникальные Эстетичные Шрифты Онлайн 4 | 5 | Добавьте элегантности вашему тексту с помощью нашего **Генератора Курсивных Шрифтов**! Этот инструмент преобразует ваши слова в плавный, каллиграфический почерк, придавая вашему цифровому контенту оттенок изысканности и личного стиля. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Generator för Kursiv Stil 2 | 3 | > Skapa Unika Estetiska Typsnitt Online 4 | 5 | Lägg till en touch av elegans till din text med vår **Generator för Kursiv Stil**! Detta verktyg förvandlar dina ord till flytande, handskriftsliknande text och ger ditt digitala innehåll en känsla av sofistikering och personlig stil. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/tr.md: -------------------------------------------------------------------------------- 1 | # El Yazısı Font Oluşturucu 2 | 3 | > Benzersiz Estetik Yazı Tiplerini Çevrimiçi Oluşturun 4 | 5 | **El Yazısı Font Oluşturucumuz** ile metninize zarif bir dokunuş ekleyin! Bu araç, kelimelerinizi akıcı, el yazısı benzeri yazı tiplerine dönüştürerek dijital içeriğinize sofistike ve kişisel bir stil katıyor. -------------------------------------------------------------------------------- /public/content/components/style/cursive-font/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 草书字体生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**草书字体生成器**为您的文本添加优雅感!这个工具将您的文字转换成流畅的手写体,为您的数字内容增添一抹精致和个人风格。 -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Ausgefallener Schriftgenerator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriften online 4 | 5 | Heben Sie Ihren Text mit unserem **Ausgefallenen Schriftgenerator** hervor! Dieses Tool ermöglicht es Ihnen, unverwechselbare und auffällige Schriften zu erstellen, die Ihrem Inhalt einen Hauch von Eleganz und Kreativität verleihen. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/en.md: -------------------------------------------------------------------------------- 1 | # Fancy Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Elevate your text with our **Fancy Font Generator**! This tool lets you create distinctive and eye-catching fonts that add a touch of elegance and creativity to your content. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Fuentes Elegantes 2 | 3 | > Crea Fuentes Estéticas Únicas en Línea 4 | 5 | ¡Eleva tu texto con nuestro **Generador de Fuentes Elegantes**! Esta herramienta te permite crear fuentes distintivas y llamativas que añaden un toque de elegancia y creatividad a tu contenido. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Polices Fantaisie 2 | 3 | > Créez des Polices Esthétiques Uniques en Ligne 4 | 5 | Sublimez votre texte avec notre **Générateur de Polices Fantaisie** ! Cet outil vous permet de créer des polices distinctives et accrocheuses qui ajoutent une touche d'élégance et de créativité à votre contenu. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Font Fantasiosi 2 | 3 | > Crea Font Estetici Unici Online 4 | 5 | Eleva il tuo testo con il nostro **Generatore di Font Fantasiosi**! Questo strumento ti permette di creare font distintivi e accattivanti che aggiungono un tocco di eleganza e creatività al tuo contenuto. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/ja.md: -------------------------------------------------------------------------------- 1 | # ファンシーフォントジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | 私たちの**ファンシーフォントジェネレーター**であなたのテキストを洗練させましょう!このツールを使えば、あなたのコンテンツにエレガンスと創造性を加える、独特で目を引くフォントを作成できます。 -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 팬시 폰트 생성기 2 | 3 | > 온라인에서 독특한 미적 폰트 만들기 4 | 5 | 우리의 **팬시 폰트 생성기**로 당신의 텍스트를 한 단계 업그레이드하세요! 이 도구를 사용하면 당신의 콘텐츠에 우아함과 창의성을 더해주는 독특하고 눈길을 끄는 폰트를 만들 수 있습니다. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Sierlijke Lettertype Generator 2 | 3 | > Creëer Unieke Esthetische Lettertypen Online 4 | 5 | Verhef je tekst met onze **Sierlijke Lettertype Generator**! Met deze tool kun je onderscheidende en opvallende lettertypen maken die een vleugje elegantie en creativiteit aan je content toevoegen. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Ozdobnych Czcionek 2 | 3 | > Twórz Unikalne Estetyczne Czcionki Online 4 | 5 | Podnieś poziom swojego tekstu dzięki naszemu **Generatorowi Ozdobnych Czcionek**! To narzędzie pozwala tworzyć charakterystyczne i przyciągające wzrok czcionki, które dodają nutę elegancji i kreatywności do Twojej treści. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Fontes Elegantes 2 | 3 | > Crie Fontes Estéticas Únicas Online 4 | 5 | Eleve seu texto com nosso **Gerador de Fontes Elegantes**! Esta ferramenta permite que você crie fontes distintivas e chamativas que adicionam um toque de elegância e criatividade ao seu conteúdo. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Стильных Шрифтов 2 | 3 | > Создавайте Уникальные Эстетичные Шрифты Онлайн 4 | 5 | Поднимите свой текст на новый уровень с нашим **Генератором Стильных Шрифтов**! Этот инструмент позволяет создавать отличительные и привлекающие внимание шрифты, которые добавляют нотку элегантности и креативности вашему контенту. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Fancy Teckensnittsgenerator 2 | 3 | > Skapa Unika Estetiska Teckensnitt Online 4 | 5 | Lyft din text med vår **Fancy Teckensnittsgenerator**! Detta verktyg låter dig skapa distinkta och iögonfallande teckensnitt som tillför en touch av elegans och kreativitet till ditt innehåll. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Süslü Yazı Tipi Oluşturucu 2 | 3 | > Benzersiz Estetik Yazı Tiplerini Çevrimiçi Oluşturun 4 | 5 | Metninizi **Süslü Yazı Tipi Oluşturucumuz** ile yükseltin! Bu araç, içeriğinize zarafet ve yaratıcılık katan ayırt edici ve göz alıcı yazı tipleri oluşturmanızı sağlar. -------------------------------------------------------------------------------- /public/content/components/style/fancy/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 花式字体生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**花式字体生成器**来提升您的文本!这个工具让您创建独特和吸引眼球的字体,为您的内容增添一丝优雅和创意。 -------------------------------------------------------------------------------- /public/content/components/style/fancy/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Kursivschrift-Generator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriften online 4 | 5 | Verwandeln Sie Ihren einfachen Text in stilvolle Kursivschrift mit unserem **Kursivschrift-Generator**. Perfekt zur Aufwertung Ihrer Social-Media-Beiträge, Biografien und Online-Inhalte. Erstellen Sie einzigartigen und auffälligen Text, der sich abhebt! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/en.md: -------------------------------------------------------------------------------- 1 | # Italic Text Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Transform your plain text into stylish italic fonts with our **Italic Text Generator**. Perfect for enhancing your social media posts, bios, and online content. Create unique and eye-catching text that stands out! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Texto en Cursiva 2 | 3 | > Crea Fuentes Estéticas Únicas en Línea 4 | 5 | Transforma tu texto simple en elegantes fuentes en cursiva con nuestro **Generador de Texto en Cursiva**. Perfecto para mejorar tus publicaciones en redes sociales, biografías y contenido en línea. ¡Crea texto único y llamativo que destaque! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Texte en Italique 2 | 3 | > Créez des Polices Esthétiques Uniques en Ligne 4 | 5 | Transformez votre texte ordinaire en polices italiques élégantes avec notre **Générateur de Texte en Italique**. Parfait pour améliorer vos publications sur les réseaux sociaux, vos biographies et votre contenu en ligne. Créez un texte unique et accrocheur qui se démarque ! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Testo in Corsivo 2 | 3 | > Crea Font Estetici Unici Online 4 | 5 | Trasforma il tuo testo semplice in eleganti font in corsivo con il nostro **Generatore di Testo in Corsivo**. Perfetto per migliorare i tuoi post sui social media, le biografie e i contenuti online. Crea un testo unico e accattivante che si distingue! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/ja.md: -------------------------------------------------------------------------------- 1 | # イタリック体テキストジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | 私たちの**イタリック体テキストジェネレーター**で、普通のテキストをスタイリッシュなイタリック体フォントに変換しましょう。ソーシャルメディアの投稿、プロフィール、オンラインコンテンツの強化に最適です。目を引く独特のテキストを作成し、際立たせましょう! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 이탤릭체 텍스트 생성기 2 | 3 | > 온라인에서 독특한 미적 폰트 만들기 4 | 5 | 우리의 **이탤릭체 텍스트 생성기**로 일반 텍스트를 세련된 이탤릭체 폰트로 변환하세요. 소셜 미디어 게시물, 프로필, 온라인 콘텐츠를 향상시키는 데 완벽합니다. 눈에 띄는 독특한 텍스트를 만들어 보세요! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Cursieve Tekst Generator 2 | 3 | > Creëer Unieke Esthetische Lettertypen Online 4 | 5 | Transformeer je gewone tekst in stijlvolle cursieve lettertypen met onze **Cursieve Tekst Generator**. Perfect voor het verbeteren van je sociale media-berichten, bio's en online content. Creëer unieke en opvallende tekst die eruit springt! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Tekstu Kursywą 2 | 3 | > Twórz Unikalne Estetyczne Czcionki Online 4 | 5 | Przekształć swój zwykły tekst w stylowe czcionki kursywą dzięki naszemu **Generatorowi Tekstu Kursywą**. Idealny do ulepszania postów w mediach społecznościowych, biografii i treści online. Twórz unikalny i przyciągający wzrok tekst, który się wyróżnia! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Texto em Itálico 2 | 3 | > Crie Fontes Estéticas Únicas Online 4 | 5 | Transforme seu texto simples em fontes itálicas elegantes com nosso **Gerador de Texto em Itálico**. Perfeito para aprimorar suas postagens nas redes sociais, biografias e conteúdo online. Crie textos únicos e chamativos que se destacam! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Курсивного Текста 2 | 3 | > Создавайте Уникальные Эстетичные Шрифты Онлайн 4 | 5 | Превратите ваш обычный текст в стильные курсивные шрифты с помощью нашего **Генератора Курсивного Текста**. Идеально подходит для улучшения ваших постов в социальных сетях, биографий и онлайн-контента. Создавайте уникальный и привлекающий внимание текст, который выделяется! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Generator för Kursiv Text 2 | 3 | > Skapa Unika Estetiska Teckensnitt Online 4 | 5 | Förvandla din vanliga text till snygga kursiva teckensnitt med vår **Generator för Kursiv Text**. Perfekt för att förbättra dina inlägg på sociala medier, biografier och online-innehåll. Skapa unik och iögonfallande text som sticker ut! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/tr.md: -------------------------------------------------------------------------------- 1 | # İtalik Metin Oluşturucu 2 | 3 | > Benzersiz Estetik Yazı Tiplerini Çevrimiçi Oluşturun 4 | 5 | Düz metninizi şık italik yazı tiplerine dönüştürün **İtalik Metin Oluşturucumuz** ile. Sosyal medya gönderilerinizi, biyografilerinizi ve çevrimiçi içeriğinizi geliştirmek için mükemmel. Öne çıkan benzersiz ve göz alıcı metinler oluşturun! -------------------------------------------------------------------------------- /public/content/components/style/italic/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 斜体文本生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**斜体文本生成器**将您的普通文本转换为时尚的斜体字体。非常适合增强您的社交媒体帖子、个人简介和在线内容。创建独特且引人注目的文本,让它脱颖而出! -------------------------------------------------------------------------------- /public/content/components/style/italic/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Serifenloser Schriftgenerator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriften online 4 | 5 | Verwandeln Sie Ihren Text mit einem klaren und modernen Look mithilfe unseres **Serifenlosen Schriftgenerators**! Dieses Tool ermöglicht es Ihnen, einzigartige, ästhetische Schriften ohne die dekorativen Elemente von Serifenschriften zu erstellen und verleiht Ihrem Text ein schlankes, professionelles Erscheinungsbild. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/en.md: -------------------------------------------------------------------------------- 1 | # Sans-serif Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Transform your text with a clean and modern look using our **Sans-serif Fonts Generator**! This tool allows you to create unique, aesthetic fonts without the decorative elements of serif fonts, giving your text a sleek, professional appearance. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Fuentes Sans-serif 2 | 3 | > Crea Fuentes Estéticas Únicas en Línea 4 | 5 | ¡Transforma tu texto con un aspecto limpio y moderno utilizando nuestro **Generador de Fuentes Sans-serif**! Esta herramienta te permite crear fuentes únicas y estéticas sin los elementos decorativos de las fuentes serif, dando a tu texto una apariencia elegante y profesional. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Polices Sans Empattement 2 | 3 | > Créez des Polices Esthétiques Uniques en Ligne 4 | 5 | Transformez votre texte avec un look épuré et moderne grâce à notre **Générateur de Polices Sans Empattement** ! Cet outil vous permet de créer des polices uniques et esthétiques sans les éléments décoratifs des polices avec empattement, donnant à votre texte une apparence élégante et professionnelle. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Font Sans-serif 2 | 3 | > Crea Font Estetici Unici Online 4 | 5 | Trasforma il tuo testo con un aspetto pulito e moderno usando il nostro **Generatore di Font Sans-serif**! Questo strumento ti permette di creare font unici ed estetici senza gli elementi decorativi dei font serif, dando al tuo testo un aspetto elegante e professionale. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/ja.md: -------------------------------------------------------------------------------- 1 | # サンセリフフォントジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | 私たちの**サンセリフフォントジェネレーター**を使用して、クリーンでモダンな外観であなたのテキストを変換しましょう!このツールを使用すると、セリフフォントの装飾的な要素なしで、ユニークで美的なフォントを作成でき、あなたのテキストにスマートでプロフェッショナルな外観を与えます。 -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 산세리프 폰트 생성기 2 | 3 | > 온라인에서 독특한 미적 폰트 만들기 4 | 5 | 우리의 **산세리프 폰트 생성기**를 사용하여 깔끔하고 현대적인 모습으로 텍스트를 변환하세요! 이 도구를 사용하면 세리프 폰트의 장식적 요소 없이 독특하고 미적인 폰트를 만들 수 있어, 텍스트에 세련되고 전문적인 모습을 줍니다. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Schreefloze Lettertype Generator 2 | 3 | > Creëer Unieke Esthetische Lettertypen Online 4 | 5 | Transformeer je tekst met een strakke en moderne uitstraling met onze **Schreefloze Lettertype Generator**! Met deze tool kun je unieke, esthetische lettertypen maken zonder de decoratieve elementen van lettertypen met schreef, waardoor je tekst een slanke, professionele uitstraling krijgt. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Czcionek Bezszeryfowych 2 | 3 | > Twórz Unikalne Estetyczne Czcionki Online 4 | 5 | Przekształć swój tekst, nadając mu czysty i nowoczesny wygląd za pomocą naszego **Generatora Czcionek Bezszeryfowych**! To narzędzie pozwala tworzyć unikalne, estetyczne czcionki bez ozdobnych elementów czcionek szeryfowych, nadając twojemu tekstowi elegancki, profesjonalny wygląd. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Fontes Sem Serifa 2 | 3 | > Crie Fontes Estéticas Únicas Online 4 | 5 | Transforme seu texto com um visual limpo e moderno usando nosso **Gerador de Fontes Sem Serifa**! Esta ferramenta permite que você crie fontes únicas e estéticas sem os elementos decorativos das fontes serifadas, dando ao seu texto uma aparência elegante e profissional. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Шрифтов Без Засечек 2 | 3 | > Создавайте Уникальные Эстетичные Шрифты Онлайн 4 | 5 | Преобразите свой текст, придав ему чистый и современный вид с помощью нашего **Генератора Шрифтов Без Засечек**! Этот инструмент позволяет создавать уникальные, эстетичные шрифты без декоративных элементов шрифтов с засечками, придавая вашему тексту стильный, профессиональный вид. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Generator för Sans-serif-typsnitt 2 | 3 | > Skapa Unika Estetiska Typsnitt Online 4 | 5 | Förvandla din text med ett rent och modernt utseende med vår **Generator för Sans-serif-typsnitt**! Detta verktyg låter dig skapa unika, estetiska typsnitt utan de dekorativa elementen hos serif-typsnitt, vilket ger din text ett elegant och professionellt utseende. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Sans-serif Yazı Tipi Oluşturucu 2 | 3 | > Benzersiz Estetik Yazı Tiplerini Çevrimiçi Oluşturun 4 | 5 | Metninizi temiz ve modern bir görünümle dönüştürmek için **Sans-serif Yazı Tipi Oluşturucumuzu** kullanın! Bu araç, serif yazı tiplerinin dekoratif öğeleri olmadan benzersiz, estetik yazı tipleri oluşturmanıza olanak tanır ve metninize şık, profesyonel bir görünüm kazandırır. -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block1/zh.md: -------------------------------------------------------------------------------- 1 | # Sans-serif字体生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**Sans-serif字体生成器**,为您的文本赋予清晰现代的外观!这个工具允许您创建独特、美观的字体,不带有衬线字体的装饰元素,使您的文本呈现出简洁、专业的外观。 -------------------------------------------------------------------------------- /public/content/components/style/sans-serif/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Serifenschrift-Generator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriften online 4 | 5 | Heben Sie Ihr Design mit unserem **Serifenschrift-Generator** auf ein neues Niveau! Ideal, um Ihrem Text einen Hauch klassischer Eleganz zu verleihen. Dieses Tool hilft Ihnen, stilvolle Serifenschriften zu erstellen, die Ihren Projekten einen Hauch von Tradition und Raffinesse verleihen. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/en.md: -------------------------------------------------------------------------------- 1 | # Serif Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Elevate your design with our **Serif Font Generator**! Ideal for adding a touch of classic elegance to your text, this tool helps you create stylish, serif fonts that bring a sense of tradition and sophistication to your projects. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Fuentes Serif 2 | 3 | > Crea Fuentes Estéticas Únicas en Línea 4 | 5 | ¡Eleva tu diseño con nuestro **Generador de Fuentes Serif**! Ideal para añadir un toque de elegancia clásica a tu texto, esta herramienta te ayuda a crear fuentes serif elegantes que aportan un sentido de tradición y sofisticación a tus proyectos. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Polices Serif 2 | 3 | > Créez des Polices Esthétiques Uniques en Ligne 4 | 5 | Élevez votre design avec notre **Générateur de Polices Serif** ! Idéal pour ajouter une touche d'élégance classique à votre texte, cet outil vous aide à créer des polices serif stylées qui apportent un sens de tradition et de sophistication à vos projets. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Font Serif 2 | 3 | > Crea Font Estetici Unici Online 4 | 5 | Eleva il tuo design con il nostro **Generatore di Font Serif**! Ideale per aggiungere un tocco di eleganza classica al tuo testo, questo strumento ti aiuta a creare font serif eleganti che portano un senso di tradizione e sofisticatezza ai tuoi progetti. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/ja.md: -------------------------------------------------------------------------------- 1 | # セリフフォントジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | 私たちの**セリフフォントジェネレーター**であなたのデザインを格上げしましょう!テキストに古典的なエレガンスを加えるのに最適なこのツールは、あなたのプロジェクトに伝統と洗練さをもたらす、スタイリッシュなセリフフォントの作成をサポートします。 -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 세리프 폰트 생성기 2 | 3 | > 온라인에서 독특한 미적 폰트 만들기 4 | 5 | 우리의 **세리프 폰트 생성기**로 당신의 디자인을 한 단계 높이세요! 텍스트에 고전적인 우아함을 더하기에 이상적인 이 도구는 당신의 프로젝트에 전통과 세련미를 불어넣는 스타일리시한 세리프 폰트를 만들 수 있도록 도와줍니다. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Serif Lettertype Generator 2 | 3 | > Creëer Unieke Esthetische Lettertypen Online 4 | 5 | Til je ontwerp naar een hoger niveau met onze **Serif Lettertype Generator**! Ideaal voor het toevoegen van een vleugje klassieke elegantie aan je tekst, deze tool helpt je stijlvolle serif lettertypen te creëren die een gevoel van traditie en verfijning aan je projecten geven. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Czcionek Szeryfowych 2 | 3 | > Twórz Unikalne Estetyczne Czcionki Online 4 | 5 | Podnieś poziom swojego projektu dzięki naszemu **Generatorowi Czcionek Szeryfowych**! Idealny do dodania nutki klasycznej elegancji do twojego tekstu, to narzędzie pomaga tworzyć stylowe czcionki szeryfowe, które nadają twoim projektom poczucie tradycji i wyrafinowania. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Fontes Serifadas 2 | 3 | > Crie Fontes Estéticas Únicas Online 4 | 5 | Eleve seu design com nosso **Gerador de Fontes Serifadas**! Ideal para adicionar um toque de elegância clássica ao seu texto, esta ferramenta ajuda você a criar fontes serifadas estilosas que trazem um senso de tradição e sofisticação aos seus projetos. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Шрифтов с Засечками 2 | 3 | > Создавайте Уникальные Эстетичные Шрифты Онлайн 4 | 5 | Поднимите свой дизайн на новый уровень с нашим **Генератором Шрифтов с Засечками**! Идеально подходит для добавления нотки классической элегантности к вашему тексту, этот инструмент помогает создавать стильные шрифты с засечками, которые привносят ощущение традиции и изысканности в ваши проекты. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Generator för Serif-typsnitt 2 | 3 | > Skapa Unika Estetiska Typsnitt Online 4 | 5 | Lyft din design med vår **Generator för Serif-typsnitt**! Perfekt för att lägga till en touch av klassisk elegans till din text, detta verktyg hjälper dig att skapa stilfulla serif-typsnitt som ger en känsla av tradition och sofistikering till dina projekt. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Serif Yazı Tipi Oluşturucu 2 | 3 | > Benzersiz Estetik Yazı Tiplerini Çevrimiçi Oluşturun 4 | 5 | Tasarımınızı **Serif Yazı Tipi Oluşturucumuz** ile yükseltin! Metninize klasik bir zarafet katmak için ideal olan bu araç, projelerinize gelenek ve incelik duygusu katan şık serif yazı tipleri oluşturmanıza yardımcı olur. -------------------------------------------------------------------------------- /public/content/components/style/serif/block1/zh.md: -------------------------------------------------------------------------------- 1 | # Serif字体生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**Serif字体生成器**提升您的设计!这个工具非常适合为您的文本添加经典优雅的触感,帮助您创建时尚的衬线字体,为您的项目带来传统和精致的感觉。 -------------------------------------------------------------------------------- /public/content/components/style/serif/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Kleiner Text-Generator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriften online 4 | 5 | Entdecken Sie den Charme des Minimalismus mit unserem **Kleinen Text-Generator**! Perfekt geeignet, um Ihren digitalen Inhalten eine subtile Note zu verleihen. Dieses Tool verwandelt Ihren Text in stilvolle, kleinformatige Schriften, die Ihre Designs mit Eleganz und Präzision aufwerten. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/en.md: -------------------------------------------------------------------------------- 1 | # Small Text Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Discover the charm of minimalism with our **Small Text Generator**! Perfect for adding a subtle touch to your digital content, this tool transforms your text into stylish, small-sized fonts that enhance your designs with elegance and precision. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Texto Pequeño 2 | 3 | > Crea Fuentes Estéticas Únicas en Línea 4 | 5 | ¡Descubre el encanto del minimalismo con nuestro **Generador de Texto Pequeño**! Perfecto para añadir un toque sutil a tu contenido digital, esta herramienta transforma tu texto en fuentes elegantes de tamaño pequeño que realzan tus diseños con elegancia y precisión. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Petit Texte 2 | 3 | > Créez des Polices Esthétiques Uniques en Ligne 4 | 5 | Découvrez le charme du minimalisme avec notre **Générateur de Petit Texte** ! Parfait pour ajouter une touche subtile à votre contenu numérique, cet outil transforme votre texte en polices élégantes de petite taille qui améliorent vos designs avec élégance et précision. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Testo Piccolo 2 | 3 | > Crea Font Estetici Unici Online 4 | 5 | Scopri il fascino del minimalismo con il nostro **Generatore di Testo Piccolo**! Perfetto per aggiungere un tocco sottile ai tuoi contenuti digitali, questo strumento trasforma il tuo testo in font eleganti di piccole dimensioni che migliorano i tuoi design con eleganza e precisione. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/ja.md: -------------------------------------------------------------------------------- 1 | # 小さなテキストジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | 私たちの**小さなテキストジェネレーター**でミニマリズムの魅力を発見しましょう!デジタルコンテンツに繊細な魅力を加えるのに最適なこのツールは、あなたのテキストをスタイリッシュな小さなサイズのフォントに変換し、エレガンスと精密さであなたのデザインを向上させます。 -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 작은 텍스트 생성기 2 | 3 | > 온라인에서 독특한 미적 폰트 만들기 4 | 5 | 우리의 **작은 텍스트 생성기**로 미니멀리즘의 매력을 발견하세요! 디지털 콘텐츠에 미묘한 터치를 더하기에 완벽한 이 도구는 당신의 텍스트를 세련된 작은 크기의 폰트로 변환하여 우아함과 정밀함으로 당신의 디자인을 향상시킵니다. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Kleine Tekstgenerator 2 | 3 | > Creëer Unieke Esthetische Lettertypen Online 4 | 5 | Ontdek de charme van minimalisme met onze **Kleine Tekstgenerator**! Perfect voor het toevoegen van een subtiele touch aan je digitale content, dit hulpmiddel transformeert je tekst in stijlvolle, kleine lettertypen die je ontwerpen verbeteren met elegantie en precisie. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Małego Tekstu 2 | 3 | > Twórz Unikalne Estetyczne Czcionki Online 4 | 5 | Odkryj urok minimalizmu z naszym **Generatorem Małego Tekstu**! Idealny do dodawania subtelnego akcentu do Twoich cyfrowych treści, to narzędzie przekształca Twój tekst w stylowe, małe czcionki, które wzbogacają Twoje projekty elegancją i precyzją. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Texto Pequeno 2 | 3 | > Crie Fontes Estéticas Únicas Online 4 | 5 | Descubra o charme do minimalismo com nosso **Gerador de Texto Pequeno**! Perfeito para adicionar um toque sutil ao seu conteúdo digital, esta ferramenta transforma seu texto em fontes elegantes de tamanho pequeno que aprimoram seus designs com elegância e precisão. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Мелкого Текста 2 | 3 | > Создавайте Уникальные Эстетичные Шрифты Онлайн 4 | 5 | Откройте для себя очарование минимализма с нашим **Генератором Мелкого Текста**! Идеально подходящий для добавления тонкого штриха к вашему цифровому контенту, этот инструмент преобразует ваш текст в стильные шрифты малого размера, которые улучшают ваши дизайны с элегантностью и точностью. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Generator för Liten Text 2 | 3 | > Skapa Unika Estetiska Typsnitt Online 4 | 5 | Upptäck charmen med minimalism med vår **Generator för Liten Text**! Perfekt för att lägga till en subtil touch till ditt digitala innehåll, detta verktyg förvandlar din text till stilfulla, små typsnitt som förbättrar dina designer med elegans och precision. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Küçük Metin Oluşturucu 2 | 3 | > Benzersiz Estetik Yazı Tiplerini Çevrimiçi Oluşturun 4 | 5 | **Küçük Metin Oluşturucumuz** ile minimalizmin cazibesini keşfedin! Dijital içeriğinize ince bir dokunuş katmak için mükemmel olan bu araç, metninizi zarif ve hassasiyetle tasarımlarınızı geliştiren şık, küçük boyutlu yazı tiplerine dönüştürür. -------------------------------------------------------------------------------- /public/content/components/style/small-text/block1/zh.md: -------------------------------------------------------------------------------- 1 | # Serif字体生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**Serif字体生成器**提升您的设计!这个工具非常适合为您的文本添加经典优雅的触感,帮助您创建时尚的衬线字体,为您的项目带来传统和精致的感觉。 -------------------------------------------------------------------------------- /public/content/components/style/small-text/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Quadratischer Textgenerator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriften online 4 | 5 | Verwandeln Sie Ihren Text mit einer modernen Note mithilfe unseres **Quadratischen Textgenerators**! Perfekt geeignet, um Ihren Designs einen einzigartigen, geometrischen Flair zu verleihen. Mit diesem Tool können Sie auffällige, quadratische Schriften erstellen, die sich abheben. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/en.md: -------------------------------------------------------------------------------- 1 | # Square Text Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Transform your text with a modern touch using our **Square Text Generator**! Perfect for adding a unique, geometric flair to your designs, this tool lets you create bold, square-shaped fonts that stand out. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Texto Cuadrado 2 | 3 | > Crea Fuentes Estéticas Únicas en Línea 4 | 5 | ¡Transforma tu texto con un toque moderno utilizando nuestro **Generador de Texto Cuadrado**! Perfecto para añadir un toque único y geométrico a tus diseños, esta herramienta te permite crear fuentes audaces y cuadradas que destacan. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Texte Carré 2 | 3 | > Créez des Polices Esthétiques Uniques en Ligne 4 | 5 | Transformez votre texte avec une touche moderne grâce à notre **Générateur de Texte Carré** ! Parfait pour ajouter une touche géométrique unique à vos designs, cet outil vous permet de créer des polices audacieuses et carrées qui se démarquent. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Testo Quadrato 2 | 3 | > Crea Font Estetici Unici Online 4 | 5 | Trasforma il tuo testo con un tocco moderno usando il nostro **Generatore di Testo Quadrato**! Perfetto per aggiungere un tocco unico e geometrico ai tuoi design, questo strumento ti permette di creare font audaci e quadrati che si distinguono. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/ja.md: -------------------------------------------------------------------------------- 1 | # 四角形テキストジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | 私たちの**四角形テキストジェネレーター**を使って、モダンな雰囲気であなたのテキストを変身させましょう!デザインにユニークで幾何学的な魅力を加えるのに最適なこのツールで、目立つ大胆な四角形のフォントを作成できます。 -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 사각형 텍스트 생성기 2 | 3 | > 온라인에서 독특한 미적 폰트 만들기 4 | 5 | 우리의 **사각형 텍스트 생성기**를 사용하여 현대적인 감각으로 텍스트를 변형하세요! 디자인에 독특하고 기하학적인 매력을 더하기에 완벽한 이 도구를 사용하면 눈에 띄는 대담한 사각형 폰트를 만들 수 있습니다. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Vierkante Tekstgenerator 2 | 3 | > Creëer Unieke Esthetische Lettertypen Online 4 | 5 | Transformeer je tekst met een moderne touch met onze **Vierkante Tekstgenerator**! Perfect voor het toevoegen van een unieke, geometrische flair aan je ontwerpen, met deze tool kun je opvallende, vierkante lettertypen maken die eruit springen. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Kwadratowego Tekstu 2 | 3 | > Twórz Unikalne Estetyczne Czcionki Online 4 | 5 | Przekształć swój tekst z nowoczesnym akcentem za pomocą naszego **Generatora Kwadratowego Tekstu**! Idealny do dodania unikalnego, geometrycznego charakteru do Twoich projektów, to narzędzie pozwala tworzyć odważne, kwadratowe czcionki, które wyróżniają się. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Texto Quadrado 2 | 3 | > Crie Fontes Estéticas Únicas Online 4 | 5 | Transforme seu texto com um toque moderno usando nosso **Gerador de Texto Quadrado**! Perfeito para adicionar um toque único e geométrico aos seus designs, esta ferramenta permite que você crie fontes ousadas e quadradas que se destacam. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Квадратного Текста 2 | 3 | > Создавайте Уникальные Эстетичные Шрифты Онлайн 4 | 5 | Преобразите свой текст с современным акцентом с помощью нашего **Генератора Квадратного Текста**! Идеально подходит для добавления уникального геометрического штриха к вашим дизайнам, этот инструмент позволяет создавать смелые квадратные шрифты, которые выделяются. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Fyrkantsstextgenerator 2 | 3 | > Skapa Unika Estetiska Typsnitt Online 4 | 5 | Förvandla din text med en modern touch med vår **Fyrkantsstextgenerator**! Perfekt för att lägga till en unik, geometrisk finess till dina designer, detta verktyg låter dig skapa djärva, fyrkantiga typsnitt som sticker ut. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Kare Metin Oluşturucu 2 | 3 | > Benzersiz Estetik Yazı Tiplerini Çevrimiçi Oluşturun 4 | 5 | **Kare Metin Oluşturucumuz** ile metninizi modern bir dokunuşla dönüştürün! Tasarımlarınıza benzersiz, geometrik bir hava katmak için mükemmel olan bu araç, öne çıkan cesur, kare şeklinde yazı tipleri oluşturmanıza olanak tanır. -------------------------------------------------------------------------------- /public/content/components/style/square-text/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 方形文本生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**方形文本生成器**为您的文本添加现代感!这个工具非常适合为您的设计增添独特的几何风格,让您创建醒目的方形字体,让文字脱颖而出。 -------------------------------------------------------------------------------- /public/content/components/style/square-text/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Unterstrichener Text-Generator 2 | 3 | > Erstellen Sie einzigartige ästhetische Schriften online 4 | 5 | Verleihen Sie Ihrem Text mit unserem **Unterstrichenen Text-Generator** eine stilvolle Note! Dieses Tool hilft Ihnen, einzigartige, ästhetische Schriften mit Unterstreichungseffekten zu erstellen, die Ihren Text hervorheben und Aufmerksamkeit erregen. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/en.md: -------------------------------------------------------------------------------- 1 | # Underline Text Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Add a stylish touch to your text with our **Underline Text Generator**! This tool helps you create unique, aesthetic fonts with underline effects that make your text stand out and grab attention. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Texto Subrayado 2 | 3 | > Crea Fuentes Estéticas Únicas en Línea 4 | 5 | ¡Añade un toque elegante a tu texto con nuestro **Generador de Texto Subrayado**! Esta herramienta te ayuda a crear fuentes únicas y estéticas con efectos de subrayado que hacen que tu texto destaque y llame la atención. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Texte Souligné 2 | 3 | > Créez des Polices Esthétiques Uniques en Ligne 4 | 5 | Ajoutez une touche élégante à votre texte avec notre **Générateur de Texte Souligné** ! Cet outil vous aide à créer des polices uniques et esthétiques avec des effets de soulignement qui font ressortir votre texte et attirent l'attention. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Testo Sottolineato 2 | 3 | > Crea Font Estetici Unici Online 4 | 5 | Aggiungi un tocco elegante al tuo testo con il nostro **Generatore di Testo Sottolineato**! Questo strumento ti aiuta a creare font unici ed estetici con effetti di sottolineatura che fanno risaltare il tuo testo e catturano l'attenzione. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/ja.md: -------------------------------------------------------------------------------- 1 | # 下線テキストジェネレーター 2 | 3 | > オンラインでユニークな美的フォントを作成 4 | 5 | 私たちの**下線テキストジェネレーター**であなたのテキストにスタイリッシュな魅力を加えましょう!このツールは、テキストを目立たせ、注目を集める下線効果を持つユニークで美的なフォントの作成をサポートします。 -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 밑줄 텍스트 생성기 2 | 3 | > 온라인에서 독특한 미적 폰트 만들기 4 | 5 | 우리의 **밑줄 텍스트 생성기**로 텍스트에 세련된 터치를 더하세요! 이 도구는 텍스트를 돋보이게 하고 주목을 끄는 밑줄 효과가 있는 독특하고 미적인 폰트를 만들 수 있도록 도와줍니다. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Onderstreepte Tekstgenerator 2 | 3 | > Creëer Unieke Esthetische Lettertypen Online 4 | 5 | Voeg een stijlvolle touch toe aan je tekst met onze **Onderstreepte Tekstgenerator**! Deze tool helpt je unieke, esthetische lettertypen te creëren met onderstrepingseffecten die je tekst laten opvallen en de aandacht trekken. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Tekstu Podkreślonego 2 | 3 | > Twórz Unikalne Estetyczne Czcionki Online 4 | 5 | Dodaj stylowy akcent do swojego tekstu dzięki naszemu **Generatorowi Tekstu Podkreślonego**! To narzędzie pomaga tworzyć unikalne, estetyczne czcionki z efektami podkreślenia, które sprawiają, że Twój tekst wyróżnia się i przyciąga uwagę. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Texto Sublinhado 2 | 3 | > Crie Fontes Estéticas Únicas Online 4 | 5 | Adicione um toque elegante ao seu texto com nosso **Gerador de Texto Sublinhado**! Esta ferramenta ajuda você a criar fontes únicas e estéticas com efeitos de sublinhado que fazem seu texto se destacar e chamar a atenção. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Подчеркнутого Текста 2 | 3 | > Создавайте Уникальные Эстетичные Шрифты Онлайн 4 | 5 | Добавьте стильный штрих к вашему тексту с помощью нашего **Генератора Подчеркнутого Текста**! Этот инструмент поможет вам создать уникальные, эстетичные шрифты с эффектами подчеркивания, которые выделяют ваш текст и привлекают внимание. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Generator för Understruken Text 2 | 3 | > Skapa Unika Estetiska Typsnitt Online 4 | 5 | Lägg till en stilfull touch till din text med vår **Generator för Understruken Text**! Detta verktyg hjälper dig att skapa unika, estetiska typsnitt med understrykningseffekter som får din text att sticka ut och fånga uppmärksamhet. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Altı Çizili Metin Oluşturucu 2 | 3 | > Benzersiz Estetik Yazı Tiplerini Çevrimiçi Oluşturun 4 | 5 | **Altı Çizili Metin Oluşturucumuz** ile metninize şık bir dokunuş katın! Bu araç, metninizi öne çıkaran ve dikkat çeken altı çizili efektlerle benzersiz, estetik yazı tipleri oluşturmanıza yardımcı olur. -------------------------------------------------------------------------------- /public/content/components/style/underline/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 下划线文本生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**下划线文本生成器**为您的文本添加时尚触感!这个工具可以帮助您创建独特、美观的字体,配以下划线效果,使您的文本脱颖而出,吸引眼球。 -------------------------------------------------------------------------------- /public/content/components/style/underline/block2/en.md: -------------------------------------------------------------------------------- 1 | ## Coming soon... -------------------------------------------------------------------------------- /public/content/components/topic/block1/de_DE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seadfeng/font-generator/ce29ad89624b14d730c258462426c0947075d90d/public/content/components/topic/block1/de_DE.md -------------------------------------------------------------------------------- /public/content/components/topic/block1/en.md: -------------------------------------------------------------------------------- 1 | # Topics For Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online -------------------------------------------------------------------------------- /public/content/components/topic/block1/es.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/fr.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/it.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/ja.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/ko.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/nl.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/pl.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/pt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/ru.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/sv.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Facebook Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | -------------------------------------------------------------------------------- /public/content/components/topic/block1/zh.md: -------------------------------------------------------------------------------- 1 | # Facebook Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Facebook-Schriftgenerator 2 | 3 | > Erstelle einzigartige ästhetische Schriften online 4 | 5 | Verbessere deine Facebook-Posts mit unserem **Schriftgenerator**! Verwandle deinen Text in auffällige Schriften für Facebook, einschließlich fett, kursiv, kursiv und stilvoller Symbole. Hebe dich in Kommentaren, Posts und Bios mit einzigartigen Textstilen hervor, die Aufmerksamkeit erregen. Einfach zu bedienen, kostenlos und kompatibel mit allen Geräten. Verbessere heute deine Social-Media-Präsenz mit unserem Facebook-Schriftgenerator! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/en.md: -------------------------------------------------------------------------------- 1 | # Facebook Font Generator 2 | 3 | > Create Unique Aesthetic Fonts Online 4 | 5 | Enhance Your Facebook Posts with Our **Font Generator**! Transform your text into eye-catching fonts for Facebook, including bold, italic, cursive, and stylish symbols. Stand out in comments, posts, and bios with unique text styles that grab attention. Easy to use, free, and compatible with all devices. Elevate your social media presence today with our Facebook Font Generator! -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Fuentes para Facebook 2 | 3 | > Crea fuentes estéticas únicas en línea 4 | 5 | ¡Mejora tus publicaciones de Facebook con nuestro **Generador de Fuentes**! Transforma tu texto en fuentes llamativas para Facebook, incluidas negritas, cursivas, y símbolos elegantes. Destaca en comentarios, publicaciones y biografías con estilos de texto únicos que captan la atención. Fácil de usar, gratis y compatible con todos los dispositivos. ¡Eleva tu presencia en redes sociales hoy con nuestro Generador de Fuentes para Facebook! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Polices Facebook 2 | 3 | > Créez des polices esthétiques uniques en ligne 4 | 5 | Améliorez vos publications Facebook avec notre **Générateur de Polices** ! Transformez votre texte en polices accrocheuses pour Facebook, y compris gras, italique, cursif et symboles élégants. Démarquez-vous dans les commentaires, les publications et les biographies avec des styles de texte uniques qui attirent l'attention. Facile à utiliser, gratuit et compatible avec tous les appareils. Élevez votre présence sur les réseaux sociaux dès aujourd'hui avec notre Générateur de Polices Facebook ! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Font per Facebook 2 | 3 | > Crea font estetici unici online 4 | 5 | Migliora i tuoi post su Facebook con il nostro **Generatore di Font**! Trasforma il tuo testo in font accattivanti per Facebook, inclusi grassetto, corsivo e simboli eleganti. Distinguiti nei commenti, post e biografie con stili di testo unici che catturano l'attenzione. Facile da usare, gratuito e compatibile con tutti i dispositivi. Eleva la tua presenza sui social media oggi con il nostro Generatore di Font per Facebook! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/ja.md: -------------------------------------------------------------------------------- 1 | # Facebookフォントジェネレーター 2 | 3 | > ユニークな美的フォントをオンラインで作成 4 | 5 | Facebookの投稿を当社の**フォントジェネレーター**で強化しましょう! 太字、斜体、筆記体、スタイリッシュな記号など、目を引くフォントにテキストを変換します。コメント、投稿、バイオで目立ち、注目を集めるユニークなテキストスタイルで目立ちます。使いやすく、無料で、すべてのデバイスと互換性があります。Facebookフォントジェネレーターで今すぐソーシャルメディアの存在感を高めましょう! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 페이스북 폰트 생성기 2 | 3 | > 독특한 미적 글꼴 온라인으로 만들기 4 | 5 | 우리의 **폰트 생성기**로 페이스북 게시물을 향상하세요! 텍스트를 눈길을 끄는 페이스북용 글꼴(굵게, 기울임꼴, 필기체 및 세련된 기호 포함)로 변환하세요. 주석, 게시물 및 프로필에서 눈에 띄는 독특한 텍스트 스타일로 눈길을 끌 수 있습니다. 사용하기 쉽고, 무료이며 모든 기기와 호환됩니다. 오늘 페이스북 폰트 생성기로 소셜 미디어 존재감을 높이세요! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Facebook Lettertypegenerator 2 | 3 | > Creëer unieke esthetische lettertypen online 4 | 5 | Verfraai je Facebook-berichten met onze **Lettertypegenerator**! Transformeer je tekst in opvallende lettertypen voor Facebook, inclusief vet, cursief, sierlijk en stijlvolle symbolen. Val op in reacties, berichten en bio's met unieke tekststijlen die de aandacht trekken. Makkelijk te gebruiken, gratis en compatibel met alle apparaten. Verhoog vandaag nog je sociale media-aanwezigheid met onze Facebook Lettertypegenerator! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Czcionek na Facebooka 2 | 3 | > Twórz unikalne estetyczne czcionki online 4 | 5 | Ulepsz swoje posty na Facebooku za pomocą naszego **Generatora Czcionek**! Przekształć swój tekst w przyciągające wzrok czcionki na Facebooku, w tym pogrubione, kursywą, kursywę i stylowe symbole. Wyróżnij się w komentarzach, postach i biografiach dzięki unikalnym stylom tekstu, które przyciągają uwagę. Łatwy w użyciu, bezpłatny i kompatybilny ze wszystkimi urządzeniami. Podnieś swoją obecność w mediach społecznościowych już dziś dzięki naszemu Generatorowi Czcionek na Facebooka! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Fontes para Facebook 2 | 3 | > Crie fontes estéticas únicas online 4 | 5 | Melhore suas postagens no Facebook com nosso **Gerador de Fontes**! Transforme seu texto em fontes atraentes para o Facebook, incluindo negrito, itálico, cursivo e símbolos elegantes. Destaque-se em comentários, postagens e biografias com estilos de texto únicos que chamam a atenção. Fácil de usar, gratuito e compatível com todos os dispositivos. Eleve sua presença nas redes sociais hoje com nosso Gerador de Fontes para Facebook! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Шрифтов для Facebook 2 | 3 | > Создавайте уникальные эстетические шрифты онлайн 4 | 5 | Улучшите свои публикации на Facebook с помощью нашего **Генератора Шрифтов**! Превратите свой текст в привлекающие внимание шрифты для Facebook, включая жирный, курсив, стилизованные символы и курсив. Выделяйтесь в комментариях, постах и биографиях с уникальными текстовыми стилями, которые привлекают внимание. Легко использовать, бесплатно и совместимо со всеми устройствами. Повышайте своё присутствие в социальных сетях уже сегодня с нашим Генератором Шрифтов для Facebook! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Facebook Fontgenerator 2 | 3 | > Skapa unika estetiska typsnitt online 4 | 5 | Förbättra dina Facebook-inlägg med vår **Fontgenerator**! Förvandla din text till iögonfallande typsnitt för Facebook, inklusive fetstil, kursiv, stiliga symboler och kursiva. Stick ut i kommentarer, inlägg och biografier med unika textstilar som fångar uppmärksamhet. Lätt att använda, gratis och kompatibel med alla enheter. Höj din närvaro på sociala medier idag med vår Facebook Fontgenerator! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/tr.md: -------------------------------------------------------------------------------- 1 | # Facebook Yazı Tipi Oluşturucu 2 | 3 | > Çevrimiçi benzersiz estetik yazı tipleri oluşturun 4 | 5 | Facebook gönderilerinizi **Yazı Tipi Oluşturucumuz** ile geliştirin! Metninizi Facebook için göz alıcı yazı tiplerine dönüştürün, kalın, italik, el yazısı ve şık semboller dahil. Yorumlarda, gönderilerde ve biyografilerde dikkat çeken benzersiz metin stilleriyle öne çıkın. Kullanımı kolay, ücretsiz ve tüm cihazlarla uyumlu. Facebook Yazı Tipi Oluşturucumuz ile bugün sosyal medya varlığınızı yükseltin! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/facebook/block1/zh.md: -------------------------------------------------------------------------------- 1 | # Facebook字体生成器 2 | 3 | > 在线创建独特的美学字体 4 | 5 | 使用我们的**字体生成器**增强您的Facebook帖子!将您的文字转换为引人注目的Facebook字体,包括粗体、斜体、手写体和时尚符号。在评论、帖子和个人简介中脱颖而出,用独特的文本样式抓住眼球。易于使用,免费并兼容所有设备。立即使用我们的Facebook字体生成器提升您的社交媒体形象! 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/de_DE.md: -------------------------------------------------------------------------------- 1 | # Handschrift-Schriftgenerator 2 | 3 | > Verwandeln Sie Ihren Text in einzigartige handgeschriebene Stile. Erstellen Sie schöne Texteffekte für soziale Medien, Nachrichten und digitale Inhalte. 4 | 5 | Ein Handschrift-Schriftgenerator ist ein kostenloses Online-Tool, das normalen Text in stilvolle Unicode-Textformate umwandelt, die handgeschriebene Stile nachahmen. Perfekt, um Ihren Social-Media-Beiträgen, Nachrichten und digitalen Inhalten eine persönliche Note zu verleihen. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/en.md: -------------------------------------------------------------------------------- 1 | # Handwriting Font Generator 2 | 3 | > Transform your text into unique handwritten styles. Create beautiful text effects for social media, messaging and digital content. 4 | 5 | A handwriting font generator is a free online tool that converts regular text into stylish Unicode text formats that mimic handwritten styles. Perfect for adding a personal touch to your social media posts, messages, and digital content -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/es.md: -------------------------------------------------------------------------------- 1 | # Generador de Fuentes Manuscritas 2 | 3 | > Transforma tu texto en estilos únicos de escritura a mano. Crea hermosos efectos de texto para redes sociales, mensajes y contenido digital. 4 | 5 | Un generador de fuentes manuscritas es una herramienta gratuita en línea que convierte el texto normal en formatos de texto Unicode elegantes que imitan estilos manuscritos. Perfecto para añadir un toque personal a tus publicaciones en redes sociales, mensajes y contenido digital. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/fr.md: -------------------------------------------------------------------------------- 1 | # Générateur de Polices Manuscrites 2 | 3 | > Transformez votre texte en styles manuscrits uniques. Créez de beaux effets de texte pour les réseaux sociaux, la messagerie et le contenu numérique. 4 | 5 | Un générateur de polices manuscrites est un outil gratuit en ligne qui convertit le texte ordinaire en formats de texte Unicode élégants imitant des styles manuscrits. Parfait pour ajouter une touche personnelle à vos publications sur les réseaux sociaux, messages et contenus numériques. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/it.md: -------------------------------------------------------------------------------- 1 | # Generatore di Font Calligrafici 2 | 3 | > Trasforma il tuo testo in stili calligrafici unici. Crea bellissimi effetti di testo per social media, messaggi e contenuti digitali. 4 | 5 | Un generatore di font calligrafici è uno strumento online gratuito che converte il testo normale in eleganti formati di testo Unicode che imitano stili scritti a mano. Perfetto per aggiungere un tocco personale ai tuoi post sui social media, messaggi e contenuti digitali. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/ja.md: -------------------------------------------------------------------------------- 1 | # 手書きフォントジェネレーター 2 | 3 | > テキストを独特な手書きスタイルに変換。ソーシャルメディア、メッセージング、デジタルコンテンツ用の美しいテキスト効果を作成。 4 | 5 | 手書きフォントジェネレーターは、通常のテキストを手書きスタイルを模した洗練されたUnicodeテキスト形式に変換する無料のオンラインツールです。SNSの投稿、メッセージ、デジタルコンテンツに個性的な要素を加えるのに最適です。 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/ko.md: -------------------------------------------------------------------------------- 1 | # 손글씨 폰트 생성기 2 | 3 | > 텍스트를 독특한 손글씨 스타일로 변환하세요. 소셜 미디어, 메시징 및 디지털 콘텐츠를 위한 아름다운 텍스트 효과를 만드세요. 4 | 5 | 손글씨 폰트 생성기는 일반 텍스트를 손글씨 스타일을 모방한 세련된 유니코드 텍스트 형식으로 변환하는 무료 온라인 도구입니다. 소셜 미디어 게시물, 메시지 및 디지털 콘텐츠에 개성을 더하기에 완벽합니다. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/nl.md: -------------------------------------------------------------------------------- 1 | # Handschrift Lettertype Generator 2 | 3 | > Transformeer je tekst naar unieke handgeschreven stijlen. Creëer prachtige teksteffecten voor sociale media, berichten en digitale content. 4 | 5 | Een handschrift lettertype generator is een gratis online tool die gewone tekst omzet in stijlvolle Unicode-tekstformaten die handgeschreven stijlen nabootsen. Perfect voor het toevoegen van een persoonlijke touch aan je sociale media posts, berichten en digitale content. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/pl.md: -------------------------------------------------------------------------------- 1 | # Generator Pisma Odręcznego 2 | 3 | > Przekształć swój tekst w unikalne style pisma odręcznego. Twórz piękne efekty tekstowe dla mediów społecznościowych, wiadomości i treści cyfrowych. 4 | 5 | Generator pisma odręcznego to darmowe narzędzie online, które przekształca zwykły tekst w stylowe formaty Unicode imitujące pismo odręczne. Idealny do dodawania osobistego akcentu do postów w mediach społecznościowych, wiadomości i treści cyfrowych. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/pt.md: -------------------------------------------------------------------------------- 1 | # Gerador de Fontes Manuscritas 2 | 3 | > Transforme seu texto em estilos manuscritos únicos. Crie belos efeitos de texto para redes sociais, mensagens e conteúdo digital. 4 | 5 | Um gerador de fontes manuscritas é uma ferramenta online gratuita que converte texto normal em formatos de texto Unicode estilizados que imitam estilos manuscritos. Perfeito para adicionar um toque pessoal às suas postagens em redes sociais, mensagens e conteúdo digital. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/ru.md: -------------------------------------------------------------------------------- 1 | # Генератор Рукописных Шрифтов 2 | 3 | > Преобразуйте ваш текст в уникальные рукописные стили. Создавайте красивые текстовые эффекты для социальных сетей, сообщений и цифрового контента. 4 | 5 | Генератор рукописных шрифтов - это бесплатный онлайн-инструмент, который преобразует обычный текст в стильные форматы Unicode, имитирующие рукописные стили. Идеально подходит для добавления личного штриха к вашим публикациям в социальных сетях, сообщениям и цифровому контенту. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/sv.md: -------------------------------------------------------------------------------- 1 | # Handskriftsgenerator 2 | 3 | > Förvandla din text till unika handskrivna stilar. Skapa vackra texteffekter för sociala medier, meddelanden och digitalt innehåll. 4 | 5 | En handskriftsgenerator är ett gratis onlineverktyg som konverterar vanlig text till stilfulla Unicode-textformat som efterliknar handskrivna stilar. Perfekt för att lägga till en personlig touch till dina inlägg på sociala medier, meddelanden och digitalt innehåll. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/tr.md: -------------------------------------------------------------------------------- 1 | # El Yazısı Font Üreteci 2 | 3 | > Metninizi benzersiz el yazısı stillerine dönüştürün. Sosyal medya, mesajlaşma ve dijital içerik için güzel metin efektleri oluşturun. 4 | 5 | El yazısı font üreteci, normal metni el yazısı stillerini taklit eden şık Unicode metin formatlarına dönüştüren ücretsiz bir çevrimiçi araçtır. Sosyal medya gönderilerinize, mesajlarınıza ve dijital içeriğinize kişisel bir dokunuş katmak için mükemmeldir. 6 | -------------------------------------------------------------------------------- /public/content/components/topic/handwriting/block1/zh.md: -------------------------------------------------------------------------------- 1 | # 手写字体生成器 2 | 3 | > 将您的文本转换为独特的手写风格。为社交媒体、消息和数字内容创建精美的文字效果。 4 | 5 | 手写字体生成器是一个免费的在线工具,可将普通文本转换为模仿手写风格的精美Unicode文本格式。非常适合为您的社交媒体帖子、消息和数字内容增添个人风格。 6 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seadfeng/font-generator/ce29ad89624b14d730c258462426c0947075d90d/public/logo.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/[locale]/(frontend)/(home)/page.tsx: -------------------------------------------------------------------------------- 1 | 2 | import { StyleMain } from "@/components/frontend/page/style/main"; 3 | import { appConfig, LocaleType } from "@/config"; 4 | import { getComponentMarkdown } from "@/i18n"; 5 | import { getOrigin } from "@/lib/utils"; 6 | import { Metadata } from "next"; 7 | import { getTranslations } from "next-intl/server"; 8 | import { headers } from 'next/headers'; 9 | export const runtime = 'edge'; 10 | 11 | export async function generateMetadata({ params }:{ params: any }): Promise { 12 | const t = await getTranslations(params); 13 | return { 14 | title: { 15 | absolute: `${appConfig.appName}: ${t('frontend.meta.default.title')}`, 16 | template: "%s" 17 | }, 18 | description: t('frontend.meta.default.description') 19 | }; 20 | } 21 | 22 | 23 | export default async function Home({ 24 | params 25 | }: Readonly<{ 26 | params: { locale: string; }; 27 | }>) { 28 | const headersList = headers(); 29 | const origin = getOrigin({headers: headersList}); 30 | const url = new URL(headersList.get('x-request-url')!); 31 | // Load by key: public/data/generated/components-markdown.json 32 | const markdownContents = { 33 | block1: await getComponentMarkdown({ 34 | locale: params.locale as LocaleType, 35 | componentPathName: "home/block1", 36 | origin 37 | }) 38 | } 39 | 40 | return ( 41 |
42 | 43 |
44 | ); 45 | } 46 | -------------------------------------------------------------------------------- /src/app/[locale]/(frontend)/[...rest]/page.tsx: -------------------------------------------------------------------------------- 1 | import { NotFound } from "@/frontend/shared/not-found"; 2 | export const runtime = 'edge'; 3 | 4 | export default function NotFoundPage() { 5 | return ; 6 | } 7 | -------------------------------------------------------------------------------- /src/app/[locale]/(frontend)/[style]/page.tsx: -------------------------------------------------------------------------------- 1 | 2 | import { StyleMain } from "@/components/frontend/page/style/main"; 3 | import { LocaleType } from "@/config"; 4 | import { getComponentMarkdown } from "@/i18n"; 5 | import { getOrigin } from "@/lib/utils"; 6 | import { styleMetadata } from "@/metadata"; 7 | import { StyleKey } from "@/slugs"; 8 | import { headers } from "next/headers"; 9 | 10 | export const runtime = 'edge'; 11 | 12 | export { styleMetadata as generateMetadata }; 13 | 14 | export default async function Style({ 15 | params 16 | }: Readonly<{ 17 | params: { locale: LocaleType; style: StyleKey; }; 18 | }>) { 19 | const { locale, style } = params; 20 | const headersList = headers(); 21 | const origin = getOrigin({headers: headersList}); 22 | 23 | // Load by key: public/data/generated/components-markdown.json 24 | const markdownContents = { 25 | block1: await getComponentMarkdown({ 26 | locale, 27 | componentPathName: `style/${style}/block1`, 28 | origin 29 | }) 30 | } 31 | const url = new URL(headersList.get('x-request-url')!); 32 | 33 | return ( 34 |
35 | 36 |
37 | ); 38 | } 39 | -------------------------------------------------------------------------------- /src/app/[locale]/(frontend)/layout.tsx: -------------------------------------------------------------------------------- 1 | import { Footer } from "@/frontend/shared/footer"; 2 | import { Header } from "@/frontend/shared/header"; 3 | import { Top } from "@/frontend/shared/top"; 4 | import type { PropsWithChildren } from "react"; 5 | export const runtime = 'edge'; 6 | 7 | export default function FrontendLayout({ children }: PropsWithChildren) { 8 | return ( 9 | <> 10 |
11 |
12 | {children} 13 |
14 |