From 0af094770c4ebabc56ff761a8bd215bc397c0f7e Mon Sep 17 00:00:00 2001 From: João Augusto Costa Branco Marado Torres Date: Tue, 5 Aug 2025 18:50:37 +0100 Subject: refactor: reading page review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Augusto Costa Branco Marado Torres --- src/components/licenses/CC.astro | 120 --------------------------------------- 1 file changed, 120 deletions(-) delete mode 100644 src/components/licenses/CC.astro (limited to 'src/components/licenses/CC.astro') diff --git a/src/components/licenses/CC.astro b/src/components/licenses/CC.astro deleted file mode 100644 index 61f9114..0000000 --- a/src/components/licenses/CC.astro +++ /dev/null @@ -1,120 +0,0 @@ ---- -import type { Props as BaseProps } from "../CopyRightNotice.astro"; -interface Props extends BaseProps {} - -let { title, website, author, dateCreated, license } = Astro.props; -const publicdomain = license === "CC0"; -const sa = /SA/.test(license); -const nd = /ND/.test(license); -const nc = /NC/.test(license); -const licenseURL = `https://creativecommons.org/licenses/${ - license.slice(3).toLowerCase() -}/4.0/`; ---- - - -- cgit v1.2.3