diff --git a/frontend/public/pu_logo.svg b/frontend/public/pu_logo.svg
new file mode 100644
index 0000000..f15de45
--- /dev/null
+++ b/frontend/public/pu_logo.svg
@@ -0,0 +1,13 @@
+
+
\ No newline at end of file
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 64632e8..660c5e7 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -1,20 +1,22 @@
-import { useState } from 'react'
import { ConnectMassaWallet } from './lib/connectMassaWallets/components/ConnectMassaWallet';
import './App.css'
-import SwitchWalletButton from './lib/connectMassaWallets/components/SwitchWalletButton';
-import { useAccountStore } from './lib/connectMassaWallets/store';
import { Card } from './components/Card';
+import { FAQ, FAQData } from './components/FAQ';
+import { Button } from '@massalabs/react-ui-kit';
+import { MNSManagement } from './components/MNSManagement';
-function App() {
-
- const {
- connectedAccount,
- massaClient: client,
- currentProvider,
- } = useAccountStore();
-
- const connected = !!connectedAccount && !!currentProvider;
+const faqData: FAQData[] = [
+ {
+ question: 'What is Massa Name Service ?',
+ answer: 'Massa Name Service is a decentralized naming protocol that allows users to register a human-readable name for their Massa address. This name can be used to send and receive Massa, and to interact with smart contracts and dApps.'
+ },
+ {
+ question: 'How do I register a name ?',
+ answer: 'To register a name, you must connect your wallet and search for an available name. If the name is available, you can register it for a fee.'
+ }
+];
+function App() {
return (