Skip to content

Commit

Permalink
Merge pull request #29 from gitignore-in/enhance-readme
Browse files Browse the repository at this point in the history
Enhance readme
  • Loading branch information
kitsuyui authored Dec 26, 2023
2 parents c44f832 + 148d44a commit 17578b3
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const nextConfig = {
experimental: {},
output: 'export',
trailingSlash: true,
images: { unoptimized: true },
}

module.exports = nextConfig
Binary file added public/concept.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 17 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
import Link from 'next/link'
import Image from 'next/image'

export default function Home() {
return (
<main>
<h1>gitignore.in</h1>
<p>.gitignore generator for your project</p>
<h2>Concept</h2>
<p>
gitignore.in is a tool to generate .gitignore files for your projects.
It is inspired by gitignore.io gibo commands. <br />
.gitignore.in file stores the target of gibo and gitignore.io, so you
can regenerate .gitignore file by gitignore.in command.
<Image
alt="generate .gitignore from .gitignore.in"
width="735"
height="336"
src="/concept.png"
/>
</p>
<h2>Installation</h2>
<h3>Binary Releases</h3>
<p>
Expand All @@ -19,14 +33,14 @@ export default function Home() {
<p>
Homebrew (macOS) You can install gitignore-in using the Homebrew package
manager.
<pre>
<code>
$ brew tap gitignore-in/gitignore-in <br />$ brew install gitignore-in
</pre>
</code>
</p>
<h2>Usage</h2>
<p>
Usage
<pre>$ gitignore.in</pre>
<code>$ gitignore.in</code>
This will generate a .gitignore.in and .gitignore file in the current
directory.
</p>
Expand Down

0 comments on commit 17578b3

Please sign in to comment.