+ );
+};
+
+export default LoveLanguages;
diff --git a/src/components/results/main.tsx b/src/components/results/main.tsx
new file mode 100644
index 0000000..4f6e473
--- /dev/null
+++ b/src/components/results/main.tsx
@@ -0,0 +1,40 @@
+import React from 'react';
+import WeirdAcronyms from './weirdAcroynms';
+import Descriptions from './descriptions';
+import DateIdeas from './dateIdeas';
+import LoveLanguages from './loveLanguages';
+import { COUPLE_TYPES, CoupleTypeCode } from '../../lib/constants/coupleTypes';
+
+const ResultsMain: React.FC = () => {
+ // Default to COZY_HOMEBODIES for testing purposes
+ const defaultCoupleType = COUPLE_TYPES[CoupleTypeCode.COZY_HOMEBODIES];
+
+ return (
+
+
+
+ {/* Top Row */}
+
+ {/* Descriptions Box */}
+
+
+
+ {/* Type Indicators */}
+
+
+
+
+
+ {/* Middle Row */}
+
+
+
+
+ {/* Bottom Row */}
+
+
+
+ );
+};
+
+export default ResultsMain;
\ No newline at end of file
diff --git a/src/components/results/weirdAcroynms.tsx b/src/components/results/weirdAcroynms.tsx
new file mode 100644
index 0000000..bf67252
--- /dev/null
+++ b/src/components/results/weirdAcroynms.tsx
@@ -0,0 +1,75 @@
+"use client";
+
+import React, { useState } from 'react';
+import { CoupleTypeDefinition } from '../../lib/constants/coupleTypes';
+
+interface WeirdAcronymsProps {
+ coupleType: CoupleTypeDefinition;
+}
+
+const WeirdAcronyms: React.FC = ({ coupleType }) => {
+ const [selectedTab, setSelectedTab] = useState('s&p');
+
+ const tabs = [
+ { key: 's&p', label: 'S & P' },
+ { key: 'p&e', label: 'P & E' },
+ { key: 'a&r', label: 'A & R' }
+ ];
+
+ const getDescriptorContent = (key: string) => {
+ const baseDescriptor = coupleType.description.descriptorWords?.[key as keyof typeof coupleType.description.descriptorWords] || '';
+
+ switch (key) {
+ case 's&p':
+ return {
+ title: 'Structured & Planned',
+ content: `${baseDescriptor}. You both thrive when there's a clear plan in place. Whether it's organizing your weekly schedules, planning vacations months in advance, or maintaining organized living spaces, structure brings you comfort and success. You appreciate routines and find security in predictability.`
+ };
+ case 'p&e':
+ return {
+ title: 'Private & Emotional',
+ content: `${baseDescriptor}. Your relationship flourishes in intimate, private settings where you can be vulnerable and authentic with each other. You value deep emotional connections over surface-level interactions. Heart-to-heart conversations, meaningful gestures, and creating safe spaces for sharing feelings are central to your bond.`
+ };
+ case 'a&r':
+ return {
+ title: 'Analytical & Reflective',
+ content: `${baseDescriptor}. You both enjoy thinking deeply about life, relationships, and personal growth. You approach challenges thoughtfully, prefer to understand the 'why' behind things, and often process experiences through discussion and reflection. Your conversations tend to be meaningful and thought-provoking.`
+ };
+ default:
+ return { title: '', content: '' };
+ }
+ };
+
+ return (
+