diff --git a/src/app/[locale]/blogs/Create-3D-Letters/1024_576.png b/src/app/[locale]/blogs/Create-3D-Letters/1024_576.png new file mode 100644 index 0000000..036eb72 Binary files /dev/null and b/src/app/[locale]/blogs/Create-3D-Letters/1024_576.png differ diff --git a/src/app/[locale]/blogs/Create-3D-Letters/512_288.png b/src/app/[locale]/blogs/Create-3D-Letters/512_288.png new file mode 100644 index 0000000..295e3dd Binary files /dev/null and b/src/app/[locale]/blogs/Create-3D-Letters/512_288.png differ diff --git a/src/app/[locale]/blogs/Create-3D-Letters/blog-prompt.txt b/src/app/[locale]/blogs/Create-3D-Letters/blog-prompt.txt new file mode 100644 index 0000000..77376e5 --- /dev/null +++ b/src/app/[locale]/blogs/Create-3D-Letters/blog-prompt.txt @@ -0,0 +1,7 @@ +我要写一篇博文,介绍如何创建3d letters。你是一个专业的SEO优化师,从seo的角度来帮我组织这个blog。 +1 打开 https://fast3dtext.com/editor +2 输入想要的letters, 中间用空格隔开 +3 调整背景、字体、颜色 +4 操控三维视角 +5 生成图片并下载 +至此,即可 创建 想要的 3d letters。 diff --git a/src/app/[locale]/blogs/Create-3D-Letters/en.tsx b/src/app/[locale]/blogs/Create-3D-Letters/en.tsx new file mode 100644 index 0000000..9325577 --- /dev/null +++ b/src/app/[locale]/blogs/Create-3D-Letters/en.tsx @@ -0,0 +1,52 @@ +import { Box, Heading, Text, Link, Flex } from '@radix-ui/themes'; +import Image from 'next/image'; +import img from "./1024_576.png"; + +export default function Page() { + return ( + + How to Create Stunning 3D Letters Online for Free + + + Barbie Font Sample + + + + If you're looking to generate eye-catching 3D letters for your design, presentation, or content project, you're in the right place. Here's a simple step-by-step guide using Fast3DText.com, a free online 3D text generator that lets you design and export high-quality 3D letter images with ease. + + + 🎯 Steps to Create 3D Letters + + 1. Open the Editor + + Go to 👉 https://fast3dtext.com/editor + + + 2. Enter Your Letters + + Type the letters or words you want to turn into 3D. Separate each letter with a space to control individual layout.
+ Example: F A S T +
+ + 3. Customize the Style + + Choose your favorite: + + + + 4. Adjust the 3D View + + Drag and rotate the scene to change the 3D angle. Make your letters pop with the perfect perspective. + + + 5. Export Your Image + + Click the Download button to save your 3D letters as a high-quality image (.png). + +
+ ); +} \ No newline at end of file diff --git a/src/app/[locale]/blogs/Create-3D-Letters/page.tsx b/src/app/[locale]/blogs/Create-3D-Letters/page.tsx new file mode 100644 index 0000000..2cce69f --- /dev/null +++ b/src/app/[locale]/blogs/Create-3D-Letters/page.tsx @@ -0,0 +1,97 @@ +import Footer from "@/components/Footer"; +import Header from "@/components/Header"; +import { Box, Flex, } from "@radix-ui/themes"; +import { useLocale } from "next-intl"; +import En from "./en"; +import Zh from "./zh"; +import { Locales } from "@/i18n/config"; +import { Metadata } from "next"; +import Cover2 from "./512_288.png"; + +export const Blog = { + id: "Create-3D-Letters", + date: "2025-08-07", + cover: Cover2, + en: { + title: "How to Create Stunning 3D Letters Online for Free", + summary: + "Learn how to create stunning 3D letters online using Fast3DText — a free 3D text generator. This step-by-step guide walks you through customizing fonts, colors, background, and 3D angles, then exporting high-quality 3D text images. No design skills required.", + }, + zh: { + title: "如何快速创建炫酷的 3D 字母图像(免安装)", + summary: + "本文教你如何使用 Fast3DText 在线生成个性化的 3D 字母 图像。通过输入文字、调整字体和颜色、操控三维视角,你可以一键导出高清立体文字图片,无需任何设计基础,适用于封面、海报和社交媒体内容。", + }, +}; +export default function Page() { + + const locale = useLocale() as "en" | "zh"; + + return ( + +
+ + + + {locale == "en" && ()} + {locale == "zh" && ()} + + + +