Skip to content

Commit

Permalink
fix(changelog): Put changelog back under /changelog (#10847)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst committed Jul 25, 2024
1 parent 1f5fd9f commit 498f827
Show file tree
Hide file tree
Showing 21 changed files with 15 additions and 8 deletions.
10 changes: 10 additions & 0 deletions apps/changelog/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
import {withSentryConfig} from '@sentry/nextjs';

/** @type {import('next').NextConfig} */
const nextConfig = {
trailingSlash: true,
eslint: {
ignoreDuringBuilds: true,
},
transpilePackages: ['next-mdx-remote'],
async redirects() {
return [
{
source: '/',
destination: '/changelog',
permanent: true,
},
];
},
};

export default withSentryConfig(nextConfig, {
Expand Down
File renamed without changes.
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 5 additions & 3 deletions apps/changelog/src/client/components/articleFooter/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import {Button} from '../ui/Button';

import styles from './styles.module.css';
import squiggleImage from './squiggle.png';

export default function ArticleFooter() {
return (
<div>
<div
className={`${styles['footer-wrapper']} mb-8 py-5 px-8 rounded-md flex flex-col md:flex-row items-center justify-center flex-wrap gap-2`}
className="mb-8 py-5 px-8 rounded-md flex flex-col md:flex-row items-center justify-center flex-wrap gap-2"
style={{
background: `url('${squiggleImage.src}') 0px 0px / 300px 300px, linear-gradient(315deg, rgb(24, 13, 28) 0.57%, rgb(69, 38, 80) 100%) 0% 0% / cover`,
}}
>
<div className="flex-1 text-white uppercase text-base">
Your code is broken. Let's Fix it.
Expand Down
File renamed without changes

This file was deleted.

0 comments on commit 498f827

Please sign in to comment.