From ebfb1d589c2f591878eece655e3cf55a683c604f Mon Sep 17 00:00:00 2001 From: Roberto Carrasquel Date: Tue, 27 Feb 2024 10:46:06 -0400 Subject: [PATCH] changes on boilerplate --- .github/CODEOWNERS | 1 - .github/FUNDING.yml | 1 - src/layouts/default/default.tsx | 2 +- src/pages/_document.tsx | 8 +------- src/views/home/__snapshots__/home.test.tsx.snap | 2 +- src/views/home/home.test.tsx | 2 +- 6 files changed, 4 insertions(+), 12 deletions(-) delete mode 100644 .github/CODEOWNERS delete mode 100644 .github/FUNDING.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index cbaadd5..0000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @ByeBye-Sama \ No newline at end of file diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index b9e9e67..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -ko_fi: byebye_sama diff --git a/src/layouts/default/default.tsx b/src/layouts/default/default.tsx index 8403e9d..7fb3b7e 100644 --- a/src/layouts/default/default.tsx +++ b/src/layouts/default/default.tsx @@ -24,7 +24,7 @@ export const DefaultLayout = (props: DefaultLayoutProps) => { return (
- Boilerplate by KayPacha + NextJs Boilerplate by Making Sense {children}
diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx index 82e5790..09b82ea 100644 --- a/src/pages/_document.tsx +++ b/src/pages/_document.tsx @@ -40,13 +40,7 @@ class MyDocument extends Document { render() { return ( - - - - +
diff --git a/src/views/home/__snapshots__/home.test.tsx.snap b/src/views/home/__snapshots__/home.test.tsx.snap index 0c76041..c3b0191 100644 --- a/src/views/home/__snapshots__/home.test.tsx.snap +++ b/src/views/home/__snapshots__/home.test.tsx.snap @@ -40,7 +40,7 @@ exports[`Text renders a text inside Home 1`] = `

- Boilerplate by KayPacha + NextJs Boilerplate by Making Sense

{ 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()