Skip to content

Commit

Permalink
changes on boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
rcarrasquelg committed Feb 27, 2024
1 parent fbda9aa commit ebfb1d5
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 12 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/layouts/default/default.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const DefaultLayout = (props: DefaultLayoutProps) => {
return (
<Main id="main">
<Text color="white" variant="heading">
Boilerplate by KayPacha
NextJs Boilerplate by Making Sense
</Text>
{children}
</Main>
Expand Down
8 changes: 1 addition & 7 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,7 @@ class MyDocument extends Document {
render() {
return (
<Html lang="en">
<Head>
<meta name="description" content="Kay Pacha next boilerplate." />
<link
rel="icon"
href="https://res.cloudinary.com/kaypacha/image/upload/v1581653839/web-resources/favicon_su4xsj.png"
/>
</Head>
<Head></Head>
<body>
<Main />
<NextScript />
Expand Down
2 changes: 1 addition & 1 deletion src/views/home/__snapshots__/home.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ exports[`Text renders a text inside Home 1`] = `
<p
class="c1"
>
Boilerplate by KayPacha
NextJs Boilerplate by Making Sense
</p>
<p
class="c2"
Expand Down
2 changes: 1 addition & 1 deletion src/views/home/home.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Text', () => {
it('renders a text inside Home', () => {
const wrapper = setup()

const content = screen.getByText(/Boilerplate by KayPacha/i)
const content = screen.getByText(/NextJs Boilerplate by Making Sense/i)

expect(content).toBeInTheDocument()

Expand Down

0 comments on commit ebfb1d5

Please sign in to comment.