Skip to content

Commit

Permalink
update/aboout
Browse files Browse the repository at this point in the history
  • Loading branch information
ArunGovil committed Dec 6, 2022
1 parent e8a8da8 commit ac227e6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
11 changes: 2 additions & 9 deletions components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,8 @@ export default function About() {
<div className="flex flex-col justify-center p-4 w-full max-w-5xl mt-12">
<p className="text-2xl">about cmdr</p>
<p className="mt-4 font-thin ">
The goal of the project is to create a beautiful and extensible
experience for command-line interface users, built on open web
standards. In the beginning, our focus will be primarily around speed,
stability and the development of the correct API for extension authors.
<br />
<br />
In the future, we anticipate the community will come up with innovative
additions to enhance what could be the simplest, most powerful and
well-tested interface for productivity.
cmdr is a directory of commands which are often used during software
development, categorized across different technologies.
</p>
</div>
);
Expand Down
6 changes: 5 additions & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ export default function Footer() {
<Image src={logo} alt="cmdr" className="w-12" />
</Link>

<a target="_blank" rel="noreferrer" href="https://github.com/ArunGovil">
<a
target="_blank"
rel="noreferrer"
href="https://github.com/ArunGovil/cmdr"
>
<p className="font-medium text-sm hover:text-orange-400">@arungovil</p>
</a>
</nav>
Expand Down
6 changes: 5 additions & 1 deletion components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ export default function Header() {
<Link href="/">
<Image src={logo} alt="cmdr" className="w-12" />
</Link>
<a target="_blank" rel="noreferrer" href="https://github.com/ArunGovil">
<a
target="_blank"
rel="noreferrer"
href="https://github.com/ArunGovil/cmdr"
>
<p className="font-medium text-sm hover:text-orange-400">@github</p>
</a>
</nav>
Expand Down
11 changes: 5 additions & 6 deletions components/PrimarySearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,11 @@ export default function PrimarySearch() {
{data.length > 0 ? (
<ul>
{data.map((item) => (
<li
className="mt-2 text-sm font-light text-slate-400 cursor-pointer hover:text-white hover:bg-gradient-to-br from-[#FF4D4D] to-orange-500 pt-1 pb-1 pl-1 rounded-md"
key={item.id}
>
{item.title}
</li>
<Link key={item.id} href="/details">
<li className="mt-2 text-sm font-light text-slate-400 cursor-pointer hover:text-white hover:bg-gradient-to-br from-[#FF4D4D] to-orange-500 pt-1 pb-1 pl-1 rounded-md">
{item.title}
</li>
</Link>
))}
</ul>
) : (
Expand Down
4 changes: 2 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/** @type {import('next').NextConfig} */

const nextConfig = {
reactStrictMode: true,
swcMinify: true,
webpack: function (config) {
config.module.rules.push({
test: /\.ya?ml$/,
use: "js-yaml-loader",
});
return config;
},
reactStrictMode: true,
swcMinify: true,
};

module.exports = nextConfig;

0 comments on commit ac227e6

Please sign in to comment.