diff --git a/src/components/experience/index.jsx b/src/components/experience/index.jsx
index 14bf9a3..bab3ff9 100644
--- a/src/components/experience/index.jsx
+++ b/src/components/experience/index.jsx
@@ -1,35 +1,34 @@
import { GoPrimitiveDot } from 'react-icons/go';
import { skeleton } from '../../helpers/utils';
import config from '../../ezprofile.config';
+import { Fragment } from 'react';
const Experience = ({ loading }) => {
const renderSkeleton = () => {
let array = [];
for (let index = 0; index < 2; index++) {
array.push(
-
-
- {skeleton({ width: 'w-2', height: 'h-2', className: 'mr-2' })}
-
-
-
- {skeleton({
- width: 'w-9/12',
- height: 'h-4',
- className: 'mb-2',
- })}
-
-
- {skeleton({
- width: 'w-6/12',
- height: 'h-4',
- className: 'mb-2',
- })}
-
-
-
{skeleton({ width: 'w-6/12', height: 'h-3' })}
-
-
+
+
+
+ {skeleton({
+ width: 'w-5/12',
+ height: 'h-4',
+ })}
+
+
+ {skeleton({
+ width: 'w-6/12',
+ height: 'h-4',
+ className: 'my-1.5',
+ })}
+
+
+ {skeleton({ width: 'w-6/12', height: 'h-3' })}
+
);
}
@@ -43,43 +42,42 @@ const Experience = ({ loading }) => {
config.experiences.length !== 0 && (