Skip to content

Commit

Permalink
feat: configure renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
adarshaacharya committed Oct 12, 2023
1 parent 4aa9063 commit cce2ff5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
9 changes: 9 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"semanticCommits": "enabled",
"rebaseWhen": "conflicted",
"labels": ["dependencies"],
"updateInternalDeps": true,
"rangeStrategy": "bump",
"schedule": ["every weekend"]
}
13 changes: 8 additions & 5 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { allBlogs } from "contentlayer/generated";
import { BlogCard } from "@/components/blog-card";
import React from "react";
import { LINKS } from "@/lib/constants";
import Link from "next/link";

export default function Home() {
const blogs = allBlogs.slice(0, 2).sort((a, b) => {
Expand Down Expand Up @@ -34,10 +35,10 @@ export default function Home() {
javascript.
</p>
<p className="mt-4 mb-4">
Over the years, I&apos;ve worked on multiple projects in insurance,
game-tech, and video streaming domains, and have actively
contributed to various open source projects. Currently, I&apos;m
building iGaming solutions at &nbsp;
Over the years, I&apos;ve worked on multiple startups to build
end-to-end products in insurance, game-tech, and video streaming
domains, and have actively contributed to various open source
projects. Currently, I&apos;m building iGaming solutions at &nbsp;
<a
href="https://mindworks.xyz/"
target="_blank"
Expand Down Expand Up @@ -84,7 +85,9 @@ export default function Home() {
<ul>
{blogs.map((blog) => (
<li key={blog.slug} className="py-2">
<BlogCard blog={blog} key={blog.slug} />
<Link href={`/blog/${blog.slug}`}>
<BlogCard blog={blog} key={blog.slug} />
</Link>
</li>
))}
</ul>
Expand Down
4 changes: 2 additions & 2 deletions src/components/project-card.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { GitHubIcon } from "@/components/icons";
import { SocialLink } from "@/components/social-link";
import { PROJECTS } from "@/data/projects";
import { WEB_APPS } from "@/data/projects";
import Image from "next/image";

type Props = {
project: (typeof PROJECTS)[number];
project: (typeof WEB_APPS)[number];
};

export const ProjectCard = ({ project }: Props) => {
Expand Down

0 comments on commit cce2ff5

Please sign in to comment.