Skip to content

Commit

Permalink
更新产品文档
Browse files Browse the repository at this point in the history
  • Loading branch information
lieheng-1 committed Jul 5, 2024
1 parent fcd4296 commit f249d7e
Show file tree
Hide file tree
Showing 151 changed files with 22,771 additions and 736 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
build.sh
push.sh
push.sh
configure copy
cil.zip
8 changes: 8 additions & 0 deletions Tailcast/.astro/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"_variables": {
"lastUpdateCheck": 1720159991447
},
"devToolbar": {
"enabled": false
}
}
20 changes: 20 additions & 0 deletions Tailcast/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# build output
dist/
.output/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*


# environment variables
.env
.env.production

# macOS-specific files
.DS_Store
22 changes: 22 additions & 0 deletions Tailcast/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

## 1.0.0 (02-06-2024)

- add changelog
- add first tag and Github release
- update package.json & readme

## 1.0.1 (03-06-2024)

- update all packages
- add contributing guidelines
- fix console errors
- hide feature divider

## 1.0.2 (05-06-2024)

- add blog section and article page
- optimize theme class names
- fix visual bugs
- improve hover states on buttons
- improve accessibility
9 changes: 9 additions & 0 deletions Tailcast/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Thank you for your interest in contributing to Tailcast project. I appreciate your feedback, which is invaluable in helping me improve and grow this template. If you encounter any issues, have suggestions for improvements, or would like to share your thoughts, please don't hesitate to open an issue on the GitHub Issues page or to contact me directly.

If you would like to support the ongoing development and maintenance of this project, you can do so through the GitHub Sponsors program. Your sponsorship helps me dedicate more time and resources to this project. To become a sponsor, you can click the "Sponsor" button on my profile.

For some time, I will hold off on accepting external merge requests. While I greatly appreciate your willingness to contribute code, I am currently focused on managing the project's development internally. This may change in the future.

Thank you once again for your interest and support!

~matt765
39 changes: 39 additions & 0 deletions Tailcast/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Tailcast

Dark themed website template built on AstroJS, designed for fictional startup

## Tech stack:

Astro, React, Tailwind, Framer Motion

## Live link
[https://tailcast.vercel.app/](https://tailcast.vercel.app/)

## Project Structure

```
├── public/
│ └── favicon.svg
├── src/
│ ├── assets
│ │ ├── icons
│ │ ├── images
│ │ └── logos
│ ├── components
│ ├── layouts
│ ├── pages
│ └── styles
└── package.json
```

## How to run

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :--------------------- | :------------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:3000` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |

7 changes: 7 additions & 0 deletions Tailcast/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwind from "@astrojs/tailwind";

export default defineConfig({
integrations: [react(), tailwind()]
});
21 changes: 21 additions & 0 deletions Tailcast/license
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 matt765

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit f249d7e

Please sign in to comment.