Files
2026-04-29 00:29:14 +08:00

50 lines
2.1 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { Metadata } from "next"
import Link from "next/link"
export const metadata: Metadata = {
title: "建设中 | DAL Code",
description: "DAL Code 官网这部分内容还在补齐,路线图和更多产品细节会逐步上线。",
}
export default function ComingSoonPage() {
return (
<main className="section-small top overflow-hidden">
<div className="w-layout-blockcontainer container-default w-container">
<div className="text-center" style={{ padding: "120px 0" }}>
<div className="subtitle">Roadmap</div>
<div className="mg-top-4x-extra-small">
<h1></h1>
</div>
<div className="mg-top-4x-extra-small">
<p>DAL Code 线</p>
</div>
<div className="mg-top-4x-extra-small">
<p></p>
</div>
<div className="mg-top-24px">
<Link href="/blog" className="primary-button w-inline-block">
<div className="button-content">
<div></div>
<div className="button-icon-wrapper primary">
<svg xmlns="http://www.w3.org/2000/svg" width="100%" viewBox="0 0 17 17" fill="none" className="squared-icon">
<path d="M6.25391 3.45312L10.7458 8.01563L6.25391 12.5781" stroke="currentColor" strokeWidth="1.5" strokeLinecap="square" />
</svg>
<div className="button-icon-bg" />
<div className="button-icon-bg-inside" />
</div>
</div>
</Link>
</div>
<div className="mg-top-4x-extra-small">
<Link href="/contact" className="tertiary-button w-inline-block">
<div className="button-content">
<div> DAL Code </div>
</div>
</Link>
</div>
</div>
</div>
</main>
)
}