Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .env.example

This file was deleted.

72 changes: 0 additions & 72 deletions .github/workflows/ci.yml

This file was deleted.

26 changes: 3 additions & 23 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,4 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist

# Node dependencies
node_modules

# Logs
logs
*.log

# Misc
.DS_Store
.fleet
.idea

# Local env files
.env
.env.*
!.env.example
Thumbs.db
.idea/
.vscode/
1 change: 1 addition & 0 deletions .nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

148 changes: 148 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, follow">
<meta name="description" content="此 RYMCU 旧站页面已停止维护,请访问 RYMCU 官方网站。">
<link rel="icon" href="https://rymcu.com/favicon.ico">
<meta property="og:type" content="website">
<meta property="og:site_name" content="RYMCU">
<meta property="og:title" content="RYMCU 旧页面已停止维护">
<meta property="og:description" content="访问 RYMCU 官方网站,获取开源项目、实战教程与社区内容。">
<title>页面已停止维护 - RYMCU</title>
<style>
:root {
color-scheme: light dark;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #f7faf9;
color: #17211d;
}

* {
box-sizing: border-box;
}

body {
min-height: 100vh;
margin: 0;
display: grid;
place-items: center;
padding: 24px;
background: #f7faf9;
}

main {
width: min(100%, 640px);
}

.brand {
display: inline-flex;
align-items: center;
gap: 12px;
color: #17211d;
font-size: 18px;
font-weight: 700;
text-decoration: none;
}

.brand-mark {
width: 44px;
height: 44px;
display: grid;
place-items: center;
border-bottom: 4px solid #f59e0b;
border-radius: 8px;
background: #087f5b;
color: #ffffff;
font-size: 14px;
}

.eyebrow {
margin: 48px 0 12px;
color: #087f5b;
font-size: 14px;
font-weight: 700;
}

h1 {
margin: 0;
font-size: 40px;
line-height: 1.2;
letter-spacing: 0;
}

p {
max-width: 560px;
margin: 20px 0 0;
color: #53625b;
font-size: 18px;
line-height: 1.7;
}

.action {
display: inline-flex;
align-items: center;
gap: 8px;
min-height: 44px;
margin-top: 28px;
padding: 10px 16px;
border-radius: 6px;
background: #087f5b;
color: #ffffff;
font-weight: 700;
text-decoration: none;
}

.action:focus-visible {
outline: 3px solid #f59e0b;
outline-offset: 3px;
}

@media (max-width: 520px) {
h1 {
font-size: 32px;
}

p {
font-size: 16px;
}
}

@media (prefers-color-scheme: dark) {
:root,
body {
background: #111815;
color: #f1f5f3;
}

.brand {
color: #f1f5f3;
}

.eyebrow {
color: #5ee0ad;
}

p {
color: #b5c3bd;
}
}
</style>
</head>
<body>
<main>
<a class="brand" href="https://rymcu.com/" aria-label="前往 RYMCU 官方网站">
<span class="brand-mark" aria-hidden="true">RY</span>
<span>RYMCU</span>
</a>
<div class="eyebrow">页面已停止维护</div>
<h1>这里已经没有内容了</h1>
<p>请前往 RYMCU 官方网站,继续浏览开源项目、实战教程与社区内容。</p>
<a class="action" href="https://rymcu.com/">
前往 rymcu.com
<span aria-hidden="true">&rarr;</span>
</a>
</main>
</body>
</html>
103 changes: 14 additions & 89 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,94 +1,19 @@
![nuxt-ui-landing-social-card](https://github.com/user-attachments/assets/299676e9-b798-42b2-85bf-f8eb606993a2)
# RYMCU legacy site

# Nuxt UI Pro - Landing template
The former RYMCU GitHub Pages site has been retired. Its public URL now sends
visitors and search engines to the canonical site at <https://rymcu.com/>.

This template lets you build a landing page with [Nuxt UI Pro](https://ui.nuxt.com/pro) quickly.
## Publishing

[![Nuxt UI Pro](https://img.shields.io/badge/Made%20with-Nuxt%20UI%20Pro-00DC82?logo=nuxt.js&labelColor=020420)](https://ui.nuxt.com/pro)
- `index.html` redirects the root URL.
- `nebula-pi-f103/index.html` redirects the former product page to its
maintained GitHub repository.
- `404.html` returns a clean retirement notice for unknown legacy paths.
- `robots.txt` keeps the redirect pages crawlable so their `noindex` and
canonical signals can be processed.

- [Live demo](https://landing-template.nuxt.dev/)
- [Documentation](https://ui.nuxt.com/getting-started/installation/pro/nuxt)
GitHub Pages publishes the `master` branch root directly. No application build,
package installation, external license, or Actions workflow is required.

[![Deploy to NuxtHub](https://hub.nuxt.com/button.svg)](https://hub.nuxt.com/new?repo=nuxt-ui-pro/landing)

## Quick Start

```bash [Terminal]
npx nuxi init -t github:nuxt-ui-pro/landing
```

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.

## Renovate integration

Install [Renovate GitHub app](https://github.com/apps/renovate/installations/select_target) on your repository and you are good to go.
The previous Nuxt source remains available in Git history for reference. It is
not present in the current tree and is no longer built or deployed.
Loading