diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index 9404117..1406063 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -111,6 +111,8 @@ const mockTeamMembers: Models.BackendTeamMember[] = [ ]; const mockAbout: Models.BackendAbout = { + about: + "ReVanced was born out of Vanced's discontinuation and it is our goal to continue the legacy of what Vanced left behind. Thanks to ReVanced Patcher, it's possible to create long-lasting patches for nearly any Android app. ReVanced's patching system is designed to allow patches to work on new versions of the apps automatically with bare minimum maintenance.", contact: { email: 'contact@revanced.app' }, diff --git a/src/lib/api/models.d.ts b/src/lib/api/models.d.ts index 25761cd..c6d8791 100644 --- a/src/lib/api/models.d.ts +++ b/src/lib/api/models.d.ts @@ -97,6 +97,7 @@ type BackendAboutDonations = { wallets: BackendAboutWallet[]; }; export type BackendAbout = { + about: string; contact: BackendAboutContact; donations: BackendAboutDonations; socials: BackendAboutUrl[]; diff --git a/src/lib/components/molecules/FooterSection.svelte b/src/lib/components/molecules/FooterSection.svelte new file mode 100644 index 0000000..030ed0b --- /dev/null +++ b/src/lib/components/molecules/FooterSection.svelte @@ -0,0 +1,15 @@ + + +
+ {title} + +
diff --git a/src/lib/components/organisms/Footer.svelte b/src/lib/components/organisms/Footer.svelte index d0982d1..1d48dd9 100644 --- a/src/lib/components/organisms/Footer.svelte +++ b/src/lib/components/organisms/Footer.svelte @@ -3,17 +3,52 @@ import DmcaBadge from '$components/atoms/DmcaBadge.svelte'; import SquigglyDivider from '$components/atoms/SquigglyDivider.svelte'; + import FooterSection from '$components/molecules/FooterSection.svelte'; + import Button from '$components/atoms/Button.svelte'; + + import api from '$api'; +