diff --git a/src/components/page/KeyInfo.js b/src/components/page/KeyInfo.js
deleted file mode 100644
index a464a99d..00000000
--- a/src/components/page/KeyInfo.js
+++ /dev/null
@@ -1,94 +0,0 @@
-import React from 'react';
-import filesize from 'filesize'
-
-/**
- * KeyInfo component receives two arguments.
- * @param {Object} descriptor A Frictionless datapackage descriptor object with the following fields:
- * {
- * title: "Title of the data package",
- * length: "The number of resources present in the data package"
- * datasetSize: The combined size of the data package resources
- * format: The format of resources in the dataset. e.g csv, json, excel
- * created: The date the dataset was created
- * updated: The date the dataset was last updated
- * licence: The licence of the dataset
- * sources: An array of the data set sources
- * }
- * @param {Array} resources A Frictionless datapackage resource array
- * @returns React Component
- */
-const KeyInfo = ({ descriptor, resources }) => {
- let datasetSize = 0
- if (resources) {
- datasetSize = resources.length == 1 ?
- resources[0].size :
- resources.reduce((accumulator, currentValue) => {
- return accumulator.size + currentValue.size
- })
- }
-
- return (
- <>
-
-