Skip to content

Commit

Permalink
feat(meta): replace meta tags workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Pkcarreno committed Feb 1, 2023
1 parent 25c727c commit 63ca94e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 49 deletions.
11 changes: 1 addition & 10 deletions pages/404.jsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
import { Container } from "../components/container";
import { BaseHead } from "../components/BaseHead";
import styles from "../styles/404.module.scss";
import Head from "next/head";
import Link from "next/link";

const Error = () => {
return(
<Container>
<Head>
<BaseHead
title="Page Not Found"
description="Imagine Ivy Wallet as a manual expense tracker that will replace the good old spreadsheet for managing your personal finance. Track your expenses, fast and on-the-go! ⚡ Discover powerful insights about your spending."
/>
</Head>

<Container title="Not Found">
<div className={styles.content_wrapper}>
<h2>This page does not exist</h2>
<Link href="/">
Expand Down
11 changes: 1 addition & 10 deletions pages/features.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Container } from "../components/container";
import { BaseHead } from "../components/BaseHead";
import { LockIcon, UsersIcon, ChartIcon, WalletIcon } from "../components/icons";
import styles from "../styles/index.module.scss";
import Head from "next/head";

export default function Features() {
const perks = [
Expand Down Expand Up @@ -45,14 +43,7 @@ export default function Features() {
];

return (
<Container>
<Head>
<BaseHead
title="Ivy Wallet: Money Manager - Features"
description="Imagine Ivy Wallet as a manual expense tracker that will replace the good old spreadsheet for managing your personal finance. Track your expenses, fast and on-the-go! ⚡ Discover powerful insights about your spending."
/>
</Head>

<Container title="Features">
<div className={styles.about}>
<div className={styles.heading}>
<div>Why Ivy Wallet?</div>
Expand Down
9 changes: 0 additions & 9 deletions pages/index.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Container } from "../components/container";
import { BaseHead } from "../components/BaseHead";
import { LockIcon, UsersIcon, ChartIcon, WalletIcon, RightArrowIcon } from "../components/icons";
import styles from "../styles/index.module.scss";
import Head from "next/head";

const Index = () => {
const perks = [
Expand Down Expand Up @@ -34,13 +32,6 @@ const Index = () => {

return (
<Container>
<Head>
<BaseHead
title="Ivy Wallet: Money Manager"
description="Imagine Ivy Wallet as a manual expense tracker that will replace the good old spreadsheet for managing your personal finance. Track your expenses, fast and on-the-go! ⚡ Discover powerful insights about your spending."
/>
</Head>

<main className={styles.main}>
<div className={styles.product}>
<div className={styles.news}>
Expand Down
11 changes: 1 addition & 10 deletions pages/privacy.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import {useState, useCallback, useEffect} from "react";
import { BaseHead } from "../components/BaseHead";
import { Container } from "../components/container";
import styles from "../styles/privacy.module.scss";
import Head from "next/head";
import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";

Expand All @@ -25,14 +23,7 @@ const Privacy = () => {
}, [getData])

return(
<Container>
<Head>
<BaseHead
title="Ivy Wallet: Money Manager - Privacy"
description="Imagine Ivy Wallet as a manual expense tracker that will replace the good old spreadsheet for managing your personal finance. Track your expenses, fast and on-the-go! ⚡ Discover powerful insights about your spending."
/>
</Head>

<Container title="Privacy">
<div className={styles.content_wrapper}>
<ReactMarkdown remarkPlugind={[remarkGfm]}>
{markdownData}
Expand Down
11 changes: 1 addition & 10 deletions pages/terms-and-conditions.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import {useState, useCallback, useEffect} from "react";
import { Container } from "../components/container";
import { BaseHead } from "../components/BaseHead";
import styles from "../styles/terms.module.scss";
import Head from "next/head";
import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";

Expand All @@ -25,14 +23,7 @@ const Terms = () => {
}, [getData])

return(
<Container>
<Head>
<BaseHead
title="Ivy Wallet: Money Manager - Terms & Conditions"
description="Imagine Ivy Wallet as a manual expense tracker that will replace the good old spreadsheet for managing your personal finance. Track your expenses, fast and on-the-go! ⚡ Discover powerful insights about your spending."
/>
</Head>

<Container title="Terms & Conditions">
<div className={styles.content_wrapper}>
<ReactMarkdown remarkPlugind={[remarkGfm]}>
{markdownData}
Expand Down

0 comments on commit 63ca94e

Please sign in to comment.